Wordpress - 列出模板文件上的标签

时间:2016-08-19 20:22:25

标签: php wordpress

如何列出模板文件的所有标签?

我查看了wordpress文档,发现了这个..

<?php
    $posttags = get_the_tags();
    if ($posttags) {
        foreach($posttags as $tag) {
           echo $tag->name . ' '; 
        }
    }
 ?>

但是这不会向我的模板输出任何内容。

我需要在模板上做些什么吗?

1 个答案:

答案 0 :(得分:1)

试试此代码

<?php
    $posttags  = get_terms( array(  'taxonomy' => 'post_tag') );

    if ($posttags ) {
        foreach($posttags  as $tag) {
            echo $tag->name . ' '; 
        }
    }
 ?>