从自定义帖子中获取自定义分类名称 时间:2014-11-27 作者:akmur 我想检索分配给自定义帖子类型的类别。问题是,我事先不知道我会得到什么样的职位类型(因此,什么职位类别)。我有5个自定义的帖子类型,每个类型都有一个自定义的分类法。你能给我指出正确的方向吗? 1 个回复 SO网友:tfrommen Blueprint<获取所有分类法在它们之间循环获取当前职位的条款Code// Suppose you already have $post foreach ( get_object_taxonomies( $post ) as $taxonomy ) { foreach ( get_the_terms( $post->ID, $taxonomy ) as $term ) { // Do whatever you\'d like with $term echo $term->name; } } Referencesget_object_taxonomiesget_the_terms 结束 文章导航