Answers:
wp_get_object_terms()返回与对象(例如,帖子或页面或自定义帖子)关联的术语作为文本(通常在数组中)。
$productcategories = wp_get_object_terms($post->ID, 'productcategories');
我需要同样有效的Zack解决方案。例如,如果您只需要输入CSS ID或类的术语。关于解决方案只有一个注释,该函数调用不好,正确的是“ get_the_term_list”。
我展示我的例子:
$terms = get_the_term_list( $post->ID, 'your_taxonomy_name' );
$terms = strip_tags( $terms );
get_the_terms()
。有关信息,请参见法典页面。