如何使用WordPress获取所有类别的帖子?

这项工作非常好,但由于我的博客设置为最多显示10个帖子,因此限制为10个帖子.

   $featured_query = new WP_Query('cat=3');

        while( $featured_query->have_posts() ){
            $featured_query->the_post();
            $postcount++;
            ...

无论最大帖子设置如何,我如何覆盖该设置并获取该类别中的所有帖子?

最佳答案 使用showposts = -1.这将覆盖默认的帖子设置.按此:
http://codex.wordpress.org/Template_Tags/query_posts#Post_.26_Page_Parameters

点赞