我无法理解为什么我们需要使用wp_reset_query();
谁能给我解释一下吗?
global $more;
$more = 0;
query_posts(\'cat=3\');
if(have_posts()) :
while(have_posts()) :the_post();
?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h2>
<div><?php the_content(\'Read More\') ?></div>
<?php
endwhile;
endif;
wp_reset_query();?>