织梦DedeCMS栏目页分页标题Title添加“第N页”的方法

织梦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生成静态页面。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/f7c51a03090d403958703dfe8a285f2f.html