为什么标签没有出现在我的页面上? 时间:2017-04-07 作者:flipps 我必须在我的single.php page,这是我的代码:<?php $post_tags = wp_get_post_tags($post->ID); if(!empty($post_tags)) {?> <p><?php the_tags(\'\', \' \', \'\'); ?></p> <?php } ?> 为什么不起作用? 1 个回复 SO网友:Johansson 运行循环以输出标记:$posttags = get_the_tags($post->ID); if ($posttags) { foreach($posttags as $tag) { echo \'<a href="\'.get_tag_link($tag->term_id).\'" title="\'.$tag->name.\'">\'. $tag->name .\'</a>\'; } } 你不必提供$post->ID 如果您在循环中使用它。 文章导航