在单个帖子页面上输出自定义分类名称 - wordpress


Output custom taxonomy name on single post page - wordpress

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

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

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

<?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 />' );

应该做这个伎俩。