4

我已经用谷歌搜索了这个但找不到答案。

我为帖子创建了一个自定义分类法。

我想在单个帖子页面上列出分配给帖子的分类。例如,当我想列出帖子标签或类别时,我会这样做:

<?php the_tags('Tags: ', ', ', '<br />'); ?>

<?php the_category(', ') ?>

如何在单个帖子页面上列出自定义分类?

4

1 回答 1

6
the_terms( get_the_ID(), 'taxonomy_name', 'myTaxonomy: ', ', ', '<br />' );

或者

echo get_the_term_list( $post->ID, 'taxonomy_name', 'myTaxonomy: ', ', ', '<br />' );

应该做的伎俩。

于 2012-07-05T05:33:15.620 回答