0

異なるカテゴリの投稿を2つの別々のdivに表示しようとしています。初めてquery_postsを使用しましたが、適切に閉じていないと思います。最初のdivをカテゴリ5の投稿のみを表示するように設定し、2番目のdivをカテゴリ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 に答える