function get_people_cats($taxonomy) {
$output = '';
$terms = get_terms($taxonomy);
$count = count($terms);
if ( $count > 0 ):
foreach ( $terms as $term ):
$output .= "'". $term->name ."'". '=>';
$output .= "'". $term->term_id."',";
endforeach;
endif;
return $output;
}
如果在模板中调用该函数,此函数会返回自定义分类法列表以及找到的单词。但是我想将函数值分配给 in 中的变量functions.php
,并且它什么也不返回。