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