show tags on "single"-template sidebar only

时间:2013-07-03 作者:Dee

如果一篇帖子有标签,我想在查看单个帖子时,只在侧栏中显示这些标签作为列表;我该怎么做?

我已经搜索了一个合适的插件,但没有找到,因为我查找的所有插件最终都显示了网站上的每个标签或类别。

我很乐意使用非插件解决方案。

1 个回复
最合适的回答,由SO网友:TheDeadMedic 整理而成

这将在无序列表中显示当前帖子的标签:

<?php is_single() && the_tags( \'<ul class="tags"><li>\', \'</li><li>\', \'</li></ul>\' ) ?> 

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

你很可能想把这个放进去sidebar.php.

结束

相关推荐

Separate tags with semicolon

有没有人知道有没有办法更改类似标记的自定义分类法的回调函数,以便它在分号后而不是逗号后打断术语?我意识到我可以rewrite the whole meta box, 但如果有更简单的方法,我宁愿不要。