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

时间:2012-07-05 05:24:44

标签: php wordpress

我用Google搜索了这个,但找不到答案。

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

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

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

<?php the_category(', ') ?>

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

1 个答案:

答案 0 :(得分:6)

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

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

应该这样做。