以下代码输出帖子标题列表。在此列表下方,它还输出与类别 8 中的标签“test”匹配的每个完整帖子。为什么它会输出完整帖子?我该如何防止呢?
$query_str = "cat=8&tag=test";
query_posts($query_str);
while ( have_posts() ) : the_post();
echo '<div><a href="';
the_permalink();
echo '">';
the_title();
echo '</a></div>';
endwhile;