首页 >

织梦DedeCMS在列表页标题后加页数

在织梦DedeCMS网站中如果每个页面的标题都是不同的,这样在百度收录的时候就不会被重复收录,也很有利于优化,所以在调用的时候要多调用一个页数。
在织梦列表页调用的时候调用的标签为:{dede:pagelist listsize=’0′ listitem=’pageno’ function=’html2text(@me)’/}
调用的实例:{dede:field.title/}_第{dede:pagelist listsize=’0′ listitem=’pageno’ function=’html2text(@me)’/}页
修改php的方法为:
修改列表页标题成”列表名-第xx页”
需要修改include/arc.listview.class.php
静态页的修改方法
1.删掉236行 $this->ParseTempletsFirst();
2.在262行$this->ParseDMFields($this->PageNo,1);前添加
$this->Fields[‘pagexx’] = $this->PageNo;
$this->ParseTempletsFirst();
动态页的修改方法
3.在325行if((empty($this->PageNo) || $this->PageNo==1) 前添加
$this->Fields[‘pagexx’] = $this->PageNo;
list_article.htm模板的修改方法
{dede:field.title/} / 第{dede:field.pagexx /}页

  • 织梦DedeCMS模板会员上传头像自动加水印的代码
  • 织梦DedeCMS模板会员上传头像自动加水印的代码 | 织梦DedeCMS模板会员上传头像自动加水印的代码 ...

  • 织梦DedeCMS模板织梦DedeCMS采集规则的教程:采集节点的管理
  • 织梦DedeCMS模板织梦DedeCMS采集规则的教程:采集节点的管理 | 织梦DedeCMS模板织梦DedeCMS采集规则的教程:采集节点的管理 ...

  • 织梦DedeCMS如何让文章列表显示不同的颜色
  • 织梦DedeCMS如何让文章列表显示不同的颜色 | 织梦DedeCMS如何让文章列表显示不同的颜色 ...