织梦DEDECMS列表页首页跟其它页使用不同模板的办法
推荐学习:织梦cms
有些时候我们需要使列表页的首页跟第二页以及后面的页面的样式不同,修改dede:list标签又很难达到理想的效果,那么织梦猫就为大家介绍一个最简单! % 1的办法,就是为首( 5 2 ] 8 + ! B页( Z 9 N R g s & #单独指定一个E w | i V模板页,其余页面则调用另一个模板页。
修改B o - [ H A H A的办法如下:
打开include目录下的arc.listview.clas; W _ Gs.php文件,找到Display函数(大约在397行j z m 1 U),找到如下代码:
$this->ParseTempletsFL Q S }irst();
在这些代码的上方添加以下代码:
if($this->Pages , 4 B ^ HNo>1) { $teI t Hmpfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$GLOBALS['cfg_df_style']."d h ~ ~/list_article2.htm"; $this->dtp-&# O v ^ z L l Pgt;LoadTemplate(M J p 8$tempfile); }
添加之后,在页数大于1时,织梦就会\ : 7调用list_article2.htm来作为列表页模板了。
添加以上代码后,在动态浏览栏目时已可以实现,但会发现生成栏目静态HTML页后,仍然没有达到预期目的,
搜索如下代码:
$this-&# 0 . ^ : L } y 8gt;ParseDMFields($this->Pf + OageNo,1);
在这句代码的上方添加以下代码:
if($this->PageNo>1)
{
$tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$GLOBALS['cfg_df_style']."/list_article2.htm";
$this-&gl & o } 0 Dt;dtp->LoadTemplate($tempfile);
$this->ParseTempletsFirst();
}
好了,现在无论是静态页还是动态页都达到理想的效果了。
可能还2 G S E 0 g t :会有疑* [ u ) S问,如果一个栏目有多个列表页模板,难道每个栏目列表页的第二页都用p & V %list_articc f } l n D d Yle2.htm来作为模板?
解决办法:
将
$tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$GLOBALS['cfg_df_style']."/list_article2.htm";
改为:
$tmpdir = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']; $temp3 I ` v F *file = str_replace1 s f("{p = + D ( # m Ttid}",$this->TypeID,$this->Fields['templist']); $tempfile = str_replace("{c` # z h F A gid}",$this->ChannelUnit->ChannelInfos['nid'],$tempfile); $tempfile = $tm` = J 6 f \ =pdir."/".$teQ c Z W . Q D ] 7mpfile; $tmpfile2 = s| [ ) A C n ~ubstr($tempfile,0,-4); $tempfile = $tmpfile2."a U s = E 3 a & E2.htm";
现在就会自动去获取列表页模板后面加了2的模板,例如列表页的模板是list_ima( 3 M k D X 6ge.htm,那么第二页] J 5 t Y的模板就是list_image.htm。
这样,就方便多了。