问题:给内容页手动分页,加上[page]分页标题[/page]后,内容页标题如果只调用{$title}的话就会显示分页标题,而不是发布文章的时候输入的标题。
解决方法:
对于静态页,找到include/html.class.php,179~183行
if($titles){list($title, $content) = explode('[/page]', $content);}$title = strip_tags($title);
将
list($title, $content) = explode('[/page]', $content);
改成
list($title2, $content) = explode('[/page]', $content);
$title2是没用的了,但这句代码能把$content里的分页标识符正常的替换掉
将$title = strip_tags($title);注释掉或者删掉,重新生成内容页即可。
动态页的话找到show.php,方法同上。