37

我有这个查询,它只返回我在表上的几个条目。我有超过 10 个帖子,但此查询仅返回 6 个。请提供建议

$query = new WP_Query("year=2011&monthnum=09&post_status=publish&post_type=post&orderby=post_date&order=DESC");
while ($query->have_posts()):
    $query->the_post();
    $title=get_the_Title();                                                                                                                  
    echo"<p><input type=\"checkbox\" name=\"MyArticle[]\" value=\"".get_the_ID()."\">".get_the_Title()."</p>";
endwhile;               
wp_reset_query();
4

2 回答 2

106

尝试添加posts_per_page=-1到传递给的参数字符串WP_Query

如果未设置该值,则它会回退使用您在 中设置的默认每页帖子选项Settings >> Reading >> Blog pages show at most

我的猜测是这个值是 6,所以它返回了很多帖子,因为你没有指定不同的限制。

于 2012-10-17T21:29:55.660 回答
22
$args = array(
    'post_type' => 'product',
    'orderby' => 'ASC',
    'posts_per_page'=>-1
);
$wp_query = new WP_Query($args);
于 2015-04-22T11:33:31.497 回答