如何获得自定义分类标本?

时间:2014-11-10 22:45:13

标签: wordpress-plugin wordpress-theming wordpress

我正在为WordPress主题目录制作一个WordPress组合主题。 我为自定义帖子类型speciality创建了一个分类法(名称:portfolio)。我可以得到清单:

echo get_the_term_list( $post->ID, 'speciality', 'Portfolio Specialities: ', ', ' );

但是我需要一份针对这种特殊产品的清单。分类。即使我想要单一的名字'专业' S'分类

如何获得此自定义分类法的slug / slug-name列表?

1 个答案:

答案 0 :(得分:1)

以下代码应该有帮助

$terms = get_the_terms( $post->ID, 'speciality' ); 

foreach( $terms as $term ) {
    echo $term->name . " : " . $term->slug; 
}

查看Codex了解更多信息