使用wp_reset_postdata();
它会起作用的。。(已编辑)
<?php
$args = array(
\'post_type\' => \'posttype\',
\'p\' => \'post_id\'
);
$the_query = new WP_Query( $args );
if( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif;
wp_reset_postdata();
?>
posttype可以是“post”、“page”或自定义的post类型。这里p=302是您的帖子id。。希望它能起作用。