Wordpress分页 - 分页返回空页

时间:2015-05-17 11:31:12

标签: wordpress pagination

我有一个分页功能,正确显示页码,但点击下一页,例如2,它简单显示一个白色的空白页,无论我做什么,我尝试做所有可能的选项至少告诉我错误但是什么都没有..我有一个分页功能,当我在短代码中使用时,它的工作非常完美..但是在任何页面中,如果我传递了page.php?page_id = 1& paged = 2 where paged = 2在GET中,它显示空白页面......

页面结构如下:

index.php具有以下代码..

 get_header();  
 get_template_part( 'templates/_content' );
 get_footer();

并在_content.php模板文件中,我有以下代码..

if(is_home() OR is_category()) {

    global $paged, $wp_query;
    if(empty($paged)) $paged = 1;

    $posts_per_page = 2;
    $options = array(
      'post_type' => 'post',
      'posts_per_page' => $posts_per_page,
      'paged'          => $paged,
      'post_status'    => 'publish'
    );

    $wp_query = new WP_Query($options);
    $pages = $wp_query->max_num_pages;

    $custom_pagination = custom_pagination($pages,$posts_per_page);
    if($wp_query->have_posts()) : 
        while($wp_query->have_posts()) : the_post();
            get_template_part( 'templates/blog_archive_template' );     
        endwhile;
    else:
        echo '
            <h2 class="center">Not Found !</h2>
            <p class="center">Sorry, but you are looking for something that isn\'t here.</p>';
    endif; 

    echo $custom_pagination;

} else {    
  if(have_posts()) : while(have_posts()) : the_post();
  /* rest of html code */
}

有人可以指出一些可以帮助我的东西。谢谢你的时间。

问候

1 个答案:

答案 0 :(得分:2)

每页的默认帖子数为10.您已在自定义查询中将其设置为2,但到那时,WordPress已经确定不需要第2页,而是显示404模板。

您需要使用pre_get_posts修改主查询。

示例:

/**
 * Modify the main query on the posts index or category 
 * page. Set posts per page to 2.
 *
 * @param object $query
 */
function wpse_modify_home_category_query( $query ) {

    // Only apply to the main loop on the frontend.
    if ( is_admin() || ! $query->is_main_query() {
        return false;
    } 

    // Check we're on a posts or category page.
    if ( $query->is_home() || $query->is_category() ) {
        $query->set( 'posts_per_page', 2 );
    }
}
add_action( 'pre_get_posts', 'wpse_modify_home_category_query' );

将此内容添加到functions.php后,从index.php模板中删除自定义查询,然后使用常规循环。

如果唯一改变的是每页的帖子数量并且应该全局适用,那么您最好在设置的管理面板中更改值 - &gt;阅读页面。