POST TIME:2017-10-26 20:25
1、打開include/arc.archives.class.php文件,查找:
$this->PreNext['pre'] = "上一篇:{$preRow['title']} ";
在這一行上面加上以下代碼:
$preRow['title']=cn_substr($preRow['title'],30);//最多顯示15個(gè)漢字
查找:
$this->PreNext['next'] = "下一篇:{$nextRow['title']} ";
在這一行上面加上以下代碼
$nextRow['title']=cn_substr($nextRow['title'],30);//最多顯示15個(gè)漢字
然后重新生成所有頁面即可。