
欢迎访问全国企业网站设计NO.1网站开发商平台 | 付款方式 |
POST TIME:2020-10-09
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个汉字
然后重新生成所有页面即可。