how to print post tags

时间:2015-08-23 作者:user3762572

我想列出我当前帖子的标签

我正在使用以下代码

<?php $tax_tags = get_terms(array(\'post_tag\'));
   foreach($tax_tags as $tag){
     ?>
       <p>
     <?php echo ucfirst($tag->taxonomy).\' : \' ?>
         <a href="<?php echo get_term_link($tag); ?>"><?php echo $tag->name ?></a>
       </p>
     <?php
}
?>
输出为

Post\\u标签:1024x768

Post\\u标签:pics

Post\\u标签:印度

Post\\u标签:1366x768

Post\\u标签:1920x1080

Post\\u标签:1920x1200

Post\\u标签:2015

Post\\u标记:3d

但它显示了所有标签的列表,我想列出与Post ID=17相关的标签

1 个回复
SO网友:ezkay

你就不能用这个:

<?php the_tags( \'<span class="tags">\', \', \', \'</span>\' ); ?>

https://codex.wordpress.org/Function_Reference/the_tags

get_terms 我想这会给你网站上的所有标签。

结束

相关推荐

Custom taxonomy Rewrite Rule

我希望我的分类url如下:site。com/page/taxonomy\\u术语我如何才能做到这一点?我在函数中编写了wordpress重写规则代码。php如下所示:function sphere_custom_rewrite_rules( $rules ){ $newrules[\'(.+?)/([^/]*)/?\'] = \'index.php?pagename=$matches[1]&positive_sphere=$matches[2]\'; $newrul