此代码段显示自定义分类法“state”中的所有术语。这段代码在我的分类法中。php。我想隐藏所有与当前正在查看的术语页面不具有相同术语的术语。
$terms = get_terms( array(
\'taxonomy\' => \'state\',
\'hide_empty\' => true,
) );
$sep = \'\';
foreach ( $terms as $term ) {
if( ++$count > 60 ) break; // number of tags here.
echo $sep . \'<a href="\'.get_term_link($term).\'?suburb=armadale">\'.$term->name.\'</a>\';
$sep = \', \'; // Put your separator here.
}