1

我正在显示分类中的术语列表,并且需要从列表中排除术语我该怎么做?我制作了下面的代码,但没有删除它。

$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);
4

1 回答 1

0

你可以这样尝试:

您可以通过将它们的idslug放入其中来从get_terms中排除多个术语。例如:

// default to not exclude terms
$ids_to_exclude = array();
$get_terms_to_exclude =  get_terms(
    array(
        'fields'  => 'ids',
        'slug'    => array( 
            'Acupuntura', 
            'Acupuntura2', 
            'Acupuntura3',
            'Acupuntura4' ),
        //'taxonomy' => 'put taxonomy name here',
    )
);

if( !is_wp_error( $get_terms_to_exclude ) && count($get_terms_to_exclude) > 0){
    $ids_to_exclude = $get_terms_to_exclude; 
}
$terms = get_terms( 'taxonomyespecialidades', array( 
                        'orderby' => 'name',
                        'order'   => 'ASC',
                        'exclude'  => $ids_to_exclude,
) );
于 2018-06-22T06:28:57.010 回答