我使用此代码获取特定分类法的帖子。默认情况下,它显示10篇文章。我如何设置自己的限制?
<?php
$count = 1;
$the_query = new WP_Query( array( \'brand\' => \'sony-vaio\' ) );
while ($the_query->have_posts()) : $the_query->the_post();
?>
最合适的回答,由SO网友:Stephen Harris 整理而成
要显示5篇文章,请使用posts_per_page
. 看到了吗Codex.
$the_query = new WP_Query( array( \'brand\' => \'sony-vaio\',\'posts_per_page\'=>5 ) );