Wordpress 2.8 实现文章内容分页教程
Wordpress更新到2.8后,其他一切都好,只是添加新文章时,page按钮没了。在Wordpress中文论坛找到了解决办法,于是写下来,以备后用
打开/wp-includes/js/quicktags.js 文件,查找下列代码:
edButtons[edButtons.length]=new edButton("ed_more","more","","","t",-1);
在这段代码之后添加:
edButtons[edButtons.length] =new edButton('ed_next','page','','','p',-1);
查找代码:
j.Buttons[j.Buttons.length]=new edButton(a+"_more","more","","","t",-1);
在这段代码后添加:
j.Buttons[j.Buttons.length]=new edButton(a+"_next","page","","","p",-1);
文件修改好之后保存,上传。
然后修改 /wp-admin/includes/post.php 文件,查找代码:
'wp_more',
在后添加:
'wp_page',
完成后,保存,上传,完毕~如果修改后还是看不到,那么就还需要再做一步!
找到自己使用的模板“\wp-content\themes\你使用的模板文件夹”,找到“single.php”,打开找到:
然后在这个语句后面增加以下的代码:
分页: ', '
其中的“分页”两字你可以改成自己想用的。
如果你想在自己的首页实现分页功能,需要在“\wp-content\themes\你使用的模板文件夹”,找到“index.php”,查找语句:
the_content
用我的举例:我的是查找后,找到“ ”,然后在语句后面添加语句:
分页: ', '
将修改后的文件保存、上传并覆盖。
补充1:
上面这种显示方式是最简单的,如果你还想增加一个“上一页”“下一页”的选项的话,还需要再稍微进行修改,步骤如下:
在我们刚才添加的代码“分页: ', '
"", "after" => "", "next_or_number" => "next", "previouspagelink" => __("上一页 "), "nextpagelink" => __(" 下一页") )); ?>
如果你想修改成小程博客这样,文字改变颜色、字号变大并且居中的话,可以上面的语句改成这样:
"", "after" => "", "next_or_number" => "next", "previouspagelink" => __("上一页 "), "nextpagelink" => __(" 下一页") )); ?>
具体的效果可以看这篇文章的显示。
补充2:
如果你想实现类似“上一页 1 2 3 下一页”这样的显示方式,可以进行下面这样的修改:
 
以上的几种修改方式,都可以实现单篇文章分页功能了,只是显示方式不同而已,大家可以选择自己喜爱的。
可是,在feed输出时会出现文章不全的问题,所以,需要再稍微修改一下。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
