6
每页的文章数没有限制
我想用返回所有帖子query_posts。我尝试将posts_per_page数字设置为非常高的值,但很query_posts奇怪,并且不返回任何帖子。没有限制地查询帖子的正确方法是什么? $args = array( 'post_type' => 'post', 'cat' => '22,47,67', 'orderby' => 'name', 'order' => 'ASC', 'hide_empty' => 1, 'depth' => 1, 'posts_per_page' => ? );
41
query-posts