0

我正在尝试在两个单独的 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 -->
4

1 回答 1

2

wp_reset_query()在第一个循环之后尝试。

于 2013-01-19T21:07:11.990 回答