我正在使用下面的代码尝试显示与“html”类别中的帖子相关联的标签列表
<ul>
<?php
query_posts('category_name=bikes');
if (have_posts()) : while (have_posts()) : the_post();
if( get_the_tag_list() ){
echo $posttags = get_the_tag_list('<li>','</li><li>','</li>');
}
endwhile; endif;
wp_reset_query();
?>
</ul>
虽然我在运行它时没有看到任何结果,但我已经检查过并且有很多标签与该类别中的帖子相关联。
任何人都可以帮忙吗?