Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有自定义分类法的自定义帖子类型,并希望在 div 中显示当前帖子的术语名称。
在每篇文章中,我只选择 1 个术语,如果有帮助的话。
对不起,我找到了答案。花了一个小时搜索,终于在5分钟内找到了解决方案。这是我的代码:
<?php $term_list = wp_get_post_terms($post->ID, 'tipo-de-cursos', array("fields" => "names")); echo $term_list[0]; ?>