您可以使用wp_get_post_terms()
如果有的话,这将返回邮件所附的所有条款。然后,数组的第一个术语将能够告诉您它属于哪个分类法:
global $post;
$terms = wp_get_post_terms( $post->ID, array( \'regions\', \'sections\' ) );
if( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
$taxonomy = $terms[0]->taxonomy;
}
我不知道你的分类法鼻涕虫是什么,所以我想,你可能需要更改它们以适应你的特定设置。