自定义分类在wordpress自定义帖子类型不显示


custom taxonomy in wordpress custom post type not showing

我使用wp-types类型插件创建自定义帖子类型和自定义分类法。我在模板文件中获得了自定义字段值,类型API成功,但分类没有显示,我没有找到任何有用的API。

请指导我如何在自定义帖子类型中显示自定义分类法。

感谢您的关注

我找到了答案,将此添加到模板文件:

<?php echo get_the_term_list( $post->ID, 'custom-taxonomy-name', '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' ); ?>