下面显示了基于所有帖子的所有标签名称,这意味着我最终得到了一个包含重复项的列表。如何阻止它,以便它只显示独特的标签?
<ul>
<?php
query_posts('category_name=html');
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>