织梦DedeCMS栏目页的标题,不管是第几页都是不变的,不利于网站的SEO,那么我们可以在分页的Title里加上第几页。
方法如下:
1.首先打开include/arc.listview.class.php文件.在文件中搜索:
$this->ParseTempletsFirst();
并将其删除掉.
2.然后查找,
$this->ParseDMFields($this->PageNo,1);
在他之前添加下面代码片段
$this->Fields['pagexx'] = $this->PageNo;
$this->ParseTempletsFirst();
3.打开织梦模板的列表页(list_article.htm、list_soft.htm、list_image.htm等),将其title修改为:
<title>{dede:field.title/}_第{dede:field.pagexx /}页</title>
也就是添加 第{dede:field.pagexx /}页 这样一段代码就可以。
最后生成整站,上述方法适用于DEDE5.7生成静态页面。