从自定义帖子中获取自定义分类名称

时间: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;
    }
}

References

结束

相关推荐