标签: php wordpress
所以我的模板中有以下帖子标记
基本上我希望标签“mytag”显示在我的帖子页面上。到目前为止,我有:
<?php the_tag()?>
我很确定语法错误。
答案 0 :(得分:2)
the_tags();
s是正确的功能。
s
这将输出文本:Tags: mytag
Tags: mytag
如果你只是想要mytag,你必须添加一个空字符串作为参数来替换默认的$before
mytag
$before
the_tags('');
修改强>
没有链接:
$mytags = get_the_tags(); if($mytags){ foreach($mytags as $mytag) { echo $mytag->name; } }