打開 /include/arc.archives.class.php 文件
找到
$this->PreNext['pre']="上一篇:{$preRow['title']}";  
在其上面添加
$preRow['title']=cn_substr($preRow['title'],30);  
找到
$this->PreNext['next']="下一篇:{$nextRow['title']}";
在其上面添加
$nextRow['title']=cn_substr($nextRow['title'],30);
只需修改后來添加代碼中的50即可,50的意思就是50個(gè)字節(jié)這個(gè)可以根據(jù)實(shí)際情況設(shè)定。