当前位置:首页 > CMS教程 > WordPress > 列表

为wordpress主题实现首页与分类页的分页

发布:smiling 来源: PHP粉丝网  添加日期:2018-12-25 09:31:00 浏览: 评论:0 

制作wordpress主题时,首页、分类页、搜索页的分页效果是需要考量的,尤其是wordpress博客类主题,首页也是需要考虑在内的。如果分页设置不好,就有可能出现有些分页出现404的现象,我就曾经碰到过这样一个主题:首页分页效果正常,分类页后几页出现404现象。下面提供2种方案分页。

方案1:首页与分类页的分页放到1个勾子里。

在function.php文件里添加如下代码:

  1. function custom_posts_per_page($query){ 
  2. if(is_home()){ 
  3. $query->set('posts_per_page',8);//首页每页显示8篇文章 
  4. if(is_search()){ 
  5. $query->set('posts_per_page',-1);//搜索页显示所有匹配的文章,不分页 
  6. if(is_archive()){ 
  7. $query->set('posts_per_page',25);//archive每页显示25篇文章 
  8. //phpfensi.com 
  9. add_action('pre_get_posts','custom_posts_per_page'); 

方案2、首页与分类页分页分开放到2个不同的勾子里。

首页与分类文章每页数量分开来设置:

  1. //限制首页文章每页数量 
  2. function custom_posts_per_page($query){ 
  3. if(is_home()){ 
  4. $query->set('posts_per_page',8);//首页每页显示8篇文章 
  5. add_action('pre_get_posts','custom_posts_per_page'); 
  6.  
  7. //限制分类页文章每页数量 
  8. function custom_posts_per_page2($query){ 
  9. if(is_archive()){ 
  10. $query->set('posts_per_page',25);//archive每页显示25篇文章 
  11. }//endif 
  12. add_action('pre_get_posts','custom_posts_per_page2'); 

这样,就不需要在循环中来设置每页显示文章数量,避免“最后一页404”的情况发生。

注:在列表循环 query_posts()中,不要再使用posts_per_page来限制数量,可以使用showposts 来限制。

Tags: wordpress 首页 分类页

分享到: