wordpress-长文章 分页一个小的修改

wordpress自带的长文章 分页的使用方法:http://www.ifenwen.com/paginate-the-long-post-in-wordpress/

网上基本都是以上方法.
但是有个问题 只能在编辑状态添加,还有使用word发布的话 ,也会有问题.


下面需要只需要添加2行  就OK了


修改文件路径:wordpress\wp-includes\post.php
查找到 $where = array( 'ID' => $post_ID );
在这后面添加
$data['post_content']=str_replace("&lt;!--nextpage--&gt;", "<!--nextpage-->", $data['post_content']);

$data['post_content']=str_replace("&lt;!--nextpage<span style=\"font-family:Wingdings\">à</span>", "<!--nextpage-->", $data['post_content']);

有点编程经验的话 一看就应该知道是什么意思了.不知道的话,也说不清楚了

你可能感兴趣的:(编程,PHP,wordpress)