has\\u tag函数没有达到您在这里所期望的效果。它实际上意味着“post has tag”检查一篇文章(或当前文章)是否有特定的标记。类似于has_tag( \'self-important-tag\' )
. See the codex
如果您省略了条件,并且帖子没有标记,get\\u\\u termlist将不回显任何内容,因为它会检查帖子内部是否有术语:
<!-- Start of tags -->
<?php echo get_the_term_list( $post->ID, \'download_tag\', \'Tags \', \', \', \'\' ); ?>
<!-- End of tags -->