Wordpress分页query_post

时间:2015-09-06 19:42:48

标签: php wordpress pagination

我在某些帖子中看到,对于query_post的分页必须由参数' paged'启动。

不幸的是,它不起作用:第2页仍然与第1页相同

我的代码:

if ( have_posts() ) : 

     $args = array(
               'category_name' => 'interview',
               'post_type' => 'post',
               'posts_per_page' => 1,
               'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1),
               );

    query_posts($args);

        while ( have_posts() ) : the_post();
            the_title();
        endwhile;

        previous_posts_link('Previous');
        next_posts_link('Next');

    wp_reset_query(); 
else :
endif;

我的网站:http://www.overso.me/

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

好的我试过了:http://callmenick.com/post/custom-wordpress-loop-with-pagination 它有效。

我感谢@Andreas Krischer将query_post替换为WP_query