我有一个帖子页面(使用single.php),我想能够查询一下该帖子的分类法类别。这可能吗?我已经看过太阳下的每个wp函数,似乎没有一个能让你查询它。
我在其他类型的网页上使用过它:
if(is_tax('taxnamehere')) {
但是当我进入single.php(帖子页面)时,这不再有效
答案 0 :(得分:0)
找到它。
$terms = get_the_terms( $post->ID , 'leadership' );
if(is_array($terms)) {
foreach( $terms as $term ) {
$tax = $term->slug;
unset($term);
}
}
返回分类中的类别。