您可以使用wp_get_object_terms
$terms = wp_get_object_terms($post->ID, \'departments\');
if(!empty($terms)){
foreach($terms as $term){
$exampleName = $term->name;
$exampleSlugs[] = $term->slug;
}
}
<小时>
Alternatively you can try to first ensure that the right taxonomy is being used:
$taxonomies = get_taxonomies();
echo \'<pre>\';
print_r($taxonomies);
echo \'</pre>\';
如果一切正常,您将看到一个包含所有分类法的数组,并且分类法“departments”存在于该数组中。
当您想要输出所有术语时,可以使用以下选项:
echo \'<pre>\';
$departments = get_terms( \'departments\', \'orderby=count&hide_empty=0\' );
print_r($departments);
echo \'</pre>\';
然后你可以随心所欲地使用它。