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.
我已经用谷歌搜索了这个但找不到答案。
我为帖子创建了一个自定义分类法。
我想在单个帖子页面上列出分配给帖子的分类。例如,当我想列出帖子标签或类别时,我会这样做:
<?php the_tags('Tags: ', ', ', '<br />'); ?> <?php the_category(', ') ?>
如何在单个帖子页面上列出自定义分类?
the_terms( get_the_ID(), 'taxonomy_name', 'myTaxonomy: ', ', ', '<br />' );
或者
echo get_the_term_list( $post->ID, 'taxonomy_name', 'myTaxonomy: ', ', ', '<br />' );
应该做的伎俩。