限制wp循环中的帖子数量

时间:2012-01-15 作者:Allen

我使用此代码获取特定分类法的帖子。默认情况下,它显示10篇文章。我如何设置自己的限制?

<?php 
    $count = 1; 
    $the_query = new WP_Query( array( \'brand\' => \'sony-vaio\' ) );
    while ($the_query->have_posts()) : $the_query->the_post();
    ?>

1 个回复
最合适的回答,由SO网友:Stephen Harris 整理而成

要显示5篇文章,请使用posts_per_page. 看到了吗Codex.

$the_query = new WP_Query( array( \'brand\' => \'sony-vaio\',\'posts_per_page\'=>5 ) );

结束

相关推荐

How to limit the posts

我有一个新的问题,我如何限制来自此查询的帖子数量?我只需要7个<?php $newsposts = new WP_Query(\'cat=restaurant\'); if ( is_front_page()) { echo \'<h3 class=\"member-review\">Latest Restaurants</h3> <div id=\"extra\">\'; if ($newspos