Tags outside the loop 时间:2014-07-31 作者:user3492770 我想在主页中显示帖子的标签。我使用了:global $post; the_tags(); 但它只出现在我的第一页。 3 个回复 SO网友:Brad Dalton 使用:get_the_tags(); 与岗位$id参数,使其在循环外工作资料来源:get_the_tags SO网友:Sri <?php the_tags(\'Tags: \', \', \', \'<br />\'); ?> 此标记将有助于查看所有页面中的标记选项。请检查并告知我任何问题。 SO网友:Chinmoy Kumar Paul try this once$tags = get_tags(); $html = \'<div class="post_tags">\'; foreach ( $tags as $tag ) { $tag_link = get_tag_link( $tag->term_id ); $html .= "<a href=\'{$tag_link}\' title=\'{$tag->name} Tag\' class=\'{$tag->slug}\'>"; $html .= "{$tag->name}</a>"; } $html .= \'</div>\'; echo $html; 结束 文章导航