我正在显示分类中的术语列表,并且需要从列表中排除术语我该怎么做?我制作了下面的代码,但没有删除它。
$terms = get_terms( 'taxonomyespecialidades', array(
'orderby' => 'name',
'order' => 'ASC',
'exclude' => array(),
) );
$exclude = array("Acupuntura");
$new_the_category = '';
foreach ( $terms as $term ) {
if (!in_array($term->term_name, $exclude)) {
$new_the_category .= '<div class="post hvr-grow"><li><strong><a id="lista" href="'.esc_url( get_term_link( $term ) ) .'">'.$term->name.'</a>'. ' ('. $term->count . ')</strong></li></div>';
}
}
echo substr($new_the_category, 0);