Home  >  Article  >  php教程  >  Wordpress 2.8 实现文章内容分页教程

Wordpress 2.8 实现文章内容分页教程

WBOY
WBOYOriginal
2016-06-21 08:56:551250browse

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”,打开找到:

  然后在这个语句后面增加以下的代码:
分页: ', '

', 'number'); ?>
  其中的“分页”两字你可以改成自己想用的。
 


如果你想在自己的首页实现分页功能,需要在“\wp-content\themes\你使用的模板文件夹”,找到“index.php”,查找语句:
the_content
  用我的举例:我的是查找后,找到“ ”,然后在语句后面添加语句:
分页: ', '

', 'number'); ?>
  将修改后的文件保存、上传并覆盖。
 


补充1:
  上面这种显示方式是最简单的,如果你还想增加一个“上一页”“下一页”的选项的话,还需要再稍微进行修改,步骤如下:
  在我们刚才添加的代码“分页: ', '

', 'number'); ?>”后面或者前面(小程是添加在前面)添加如下代码:
"", "after" => "", "next_or_number" => "next", "previouspagelink" => __("上一页  "), "nextpagelink" => __(" 下一页") )); ?>
  如果你想修改成小程博客这样,文字改变颜色、字号变大并且居中的话,可以上面的语句改成这样:

"", "after" => "", "next_or_number" => "next", "previouspagelink" => __("上一页  "), "nextpagelink" => __(" 下一页") )); ?>


  具体的效果可以看这篇文章的显示。
  补充2:
  如果你想实现类似“上一页 1 2 3 下一页”这样的显示方式,可以进行下面这样的修改:


 


  以上的几种修改方式,都可以实现单篇文章分页功能了,只是显示方式不同而已,大家可以选择自己喜爱的。
  可是,在feed输出时会出现文章不全的问题,所以,需要再稍微修改一下。
 



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn