restrict posts per page 时间:2012-11-20 作者:Product Investigation 我只想在特色幻灯片中显示3篇帖子,但它被忽略了,显示了很多帖子。如何修复它?$my_query = new WP_Query( array( \'posts_per_page\' => 3, \'post_id\' => $featitem ) ); while ($my_query->have_posts()) : $my_query->the_post(); 1 个回复 SO网友:s_ha_dum post_id 不是WP_Query 参数也许你是说post__in? 如果是,那么$featitem 需要是一个post ID数组。 结束 文章导航