可以按下面 的代码来写:
global $wp_query;
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
'post__in' => array(1,2,3,4)
);
$wp_query = new WP_Query( $args );
if ( have_posts() ) :
while ( have_posts() ) : the_post();
//输出数据
endwhile;
endif;
wp_reset_query();
其中post__in就是要指定的文章