纯代码实现WordPress长文章分页
请注意,这里说的文章分页,不是学做网站论坛以前说的wordpress分页插件进行网站分类目录分页,而是一篇文章如果文字过多,会造成网页篇幅过长,影响用户体验,所以可以让一篇长文章分页显示。
注意区分图上信息,前一个是我们平时看到的more摘要显示按钮,后面那个就是本文要达到的文章分页按钮了;
1、在wordpress源程序中按路径wp-includes/js/找到quicktags.js文件;
ctrl+f搜索以下代码:
edButtons[edButtons.length]=new edButton("ed_ins","ins",'',"","s");
紧跟代码添加如下代码:
edButtons[edButtons.length]=new edButton("ed_next","page","< !–nextpage–>","","p",-1);
继续搜索代码:
j.Buttons[j.Buttons.length]=new edButton(a+"_link","link","","","a");
在其后再添加一句代码:
j.Buttons[j.Buttons.length]=new edButton(a+”_next”,”page”,”< !–nextpage–>”,”",”p”,-1);
保存文件并上传!
如果上面方法不走效,请使用这个方法:如何让wordpress长文章分页