如何显示Wordpress帖子标记

时间:2017-06-09 16:23:33

标签: php wordpress

所以我的模板中有以下帖子标记 enter image description here

基本上我希望标签“mytag”显示在我的帖子页面上。到目前为止,我有:

<?php the_tag()?>

我很确定语法错误。

1 个答案:

答案 0 :(得分:2)

带有the_tags();

s是正确的功能。

这将输出文本:Tags: mytag

如果你只是想要mytag,你必须添加一个空字符串作为参数来替换默认的$before

the_tags('');

修改

没有链接:

$mytags = get_the_tags();
if($mytags){
  foreach($mytags as $mytag) {
    echo $mytag->name; 
  }
}