从WordPress功能中剥离标签

时间:2010-10-28 18:44:57

标签: php wordpress taxonomy

尝试打印我的自定义帖子类型的分类但没有链接。试过这个,但似乎没有用,有什么建议吗?

$text = the_terms($post->ID,'type','','',''); 
echo strip_tags($text);

任何帮助都将不胜感激......我即将开始打击婴儿。

2 个答案:

答案 0 :(得分:2)

the_terms()显示条款,但您​​无法将它们存储到变量中,因为它们会被回显。您应该尝试使用get_terms()

$myterms = get_terms('category', 'orderby=count&hide_empty=0');

为了将来使用,the_something()方法会在模板上打印特定内容,get_something()方法会返回内容,以便您将其存储到变量中。

答案 1 :(得分:0)