大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
内容分页标题:帝国cms列表标题1与列表标题2(分页标题)如何设置
成都创新互联是专业的怀宁网站建设公司,怀宁接单;提供网站建设、成都网站设计,网页设计,网站设计,建网站,PHP网站建设等专业做网站服务;采用PHP框架,可快速的进行怀宁网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,专业的做网站团队,希望更多企业前来合作!
不带分页标题标签:[!--pagetitle--]
举二个调用示例:
复制代码 代码示例:
title帝国cms列表标题1与列表标题2(分页标题)如何设置_[!--class.name--]/title (带分页标题,未设置分页标题自动加页码)
title[!--pagetitle--]_[!--class.name--]/title (不调用分页标题,多页内容标题相同)
二、再来看列表分页标题。
列表分页页码:[!--list.pageno--]
复制代码 代码示例:
title[!--pagetitle--][!--list.pageno--]/title (列表标题1,列表标题2……)
直接使用列表目录页,也就是列表第一页标题就变成“列表标题1”,也带了页码。
修改:/e/class/functions.php
找到
复制代码 代码示例:
//取得分页参数
$returnpager=$thefun($num,$pagenum,$dolink,$dotype,$page,$lencord,$ok,$myoptions);
$showpage=$returnpager['showpage'];
$myoptions=$returnpager['option'];
$list1=str_replace($bereplistpage,$showpage,$list_r[0]);
$list2=str_replace($bereplistpage,$showpage,$list_r[2]);
//多余数据
if($changerow=$rownum$listtext$list_r[1])
{
$string.=$listtext;
}
$listtext=$list_r[1];
$changerow=1;
$string=$list1.$string.$list2;
//替换分页数
$string=str_replace('[!--list.pageno--]',$pagenum,$string);
WriteFiletext($path,$classlevel.$string);
$string='';
}
$no++;
}
$empire-free($sql);
}
做如下的相应修改。
将
复制代码 代码示例:
$string=str_replace('[!--list.pageno--]',$pagenum,$string);
修改为:
复制代码 代码示例:
$string=str_replace('[!--list.pageno--]',$pagenum==1?'':$pagenum,$string);
估计你内容调用是使用了灵动标签,正确使用标签应该是[!--empirenews.listtemp--]!--list.var1--[!--empirenews.listtemp--]这个标签加你的列表内容块面膜版调出就可以了。
获取所有分页数量和当前分页号,需要修改一个文件就行了,然后内容模板调用标签:所有分页数为[!--page.count--] 当前分号为[!--page.on--]
?php $curpageno='[!--list.pageno--]'; ?
修改方法如下:《参考文献》
在functions.php里面有一个生成列表的方法,
function ListHtml。。。在里面的首页和非首页进行下判断,然后再清除指定内容。。。
if($pagenum==1)
{
$path=$dopath."index".$dotype;
}
else
{
$path=$dopath."index_".$ok.$dotype;
$string = delStr("div class=\"main_lmdd\" id=\"main_lmdd\"","div class=\"clearinfo\"/div",$string);//如果非首页,清除其中指定的内容
}
/*这个方法清除指定头尾中间的字段串,这样就达到了首页和其它页面显示不一样的功能了*/
function delStr($start,$end,$orgenStr)
{
//读取要删除字符位置的前一部分字符串,并赋值给$temp
//strpos读取字符第一次出现的位置
//substr读取指定开始与结束位置的子字符串
//echo $before."—". $last;
$temp=$orgenStr;
while(strpos($temp,$start) strpos($temp, $end)){
$temp=substr($temp,0,strpos($temp, $start)).substr($temp,strpos($temp, $end)+strlen($end));
//读取要删除字符位置的后一部分字符串,然后将前后部分连接,并赋值给$temp
//返回最后是字符串
}
return $temp;
}//更多问题到问题求助专区()