我正在尝试在两个不同的div中显示来自不同类别的帖子。我第一次使用query_posts,但我认为我没有正确地关闭它或者其他东西,因为如果我设置第一个div只显示来自类别5的帖子,而第二个只显示来自类别4的帖子,他们将同时显示来自5的帖子。
我做错了什么?
<!--- START FIRST DIV --->
<div>
<?php if (is_home()) {query_posts("cat=5");}?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<div><?php the_post_thumbnail( array(300, 170) ); ?></div>
<div><a href="<?php the_permalink() ?>"><?php the_title(); ?><br />(<?php the_date(); ?>)</a></div>
</article>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
<!--- END FIRST DIV -->
<!--- START SECOND DIV --->
<div>
<?php if (is_home()) {query_posts("cat=4");}?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<div><?php the_post_thumbnail( array(300, 170) ); ?></div>
<div><a href="<?php the_permalink() ?>"><?php the_title(); ?><br />(<?php the_date(); ?>)</a></div>
</article>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
<!--- END SECOND DIV -->
答案 0 :(得分:2)
在第一个循环后尝试wp_reset_query()
。