织梦限制文章页上下篇文章标题字数

1、打开include/arc.archives.class.php文件,查找:

$this->PreNext['pre'] = "上一篇:{$preRow['title']} ";

在这一行上面加上以下代码:

$preRow['title']=cn_substr($preRow['title'],30);//最多显示15个汉字

查找:

$this->PreNext['next'] = "下一篇:{$nextRow['title']} ";

在这一行上面加上以下代码

$nextRow['title']=cn_substr($nextRow['title'],30);//最多显示15个汉字

然后重新生成所有页面即可。

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

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