但它只是显示第一个帖子,我需要显示三个帖子,请帮助我
$the_query = new WP_Query(array(
\'p\' => \'272 282 292\',));
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post();?>
// Do Stuff
endwhile;
endif;
// Reset Post Data
wp_reset_postdata();