下面的我的代码。使用这些术语进行删除不起作用。我需要它像这样工作,而不是按ID删除。
$terms = get_terms( 'MY_TAXONOMY', array(
'orderby' => 'name',
'order' => 'ASC',
'exclude' => array(),
) );
$exclude = array("MY TERM", "MY TERM 2", "MY TERM 3");
$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);
答案 0 :(得分:1)
通过在要省略的词条上使用get_term_by()
,可以获取要排除的term_ids
。然后,您可以将这些ID作为排除参数传递。
请注意,get_terms()
中的第二个$args
数组已被弃用,因此应使用键MY_TAXONOMY
将taxonomy
移到参数中。
我也不确定为什么要回显从0开始但没有结束点的子字符串,所以我删除了它。我还删除了变量串联,只是在foreach循环中回显了字符串。
$exclude_ids = array();
$exclude_names = array("MY TERM", "MY TERM 2", "MY TERM 3"); // Term NAMES to exclude
foreach( $exclude_names as $name ){
$excluded_term = get_term_by( 'name', $name, 'MY_TAXONOMY' );
$exclude_ids[] = (int) $excluded_term->term_id; // Get term_id (as a string), typcast to an INT
}
$term_args = array(
'taxonomy' => 'MY_TAXONOMY',
'orderby' => 'name',
'order' => 'ASC',
'exclude' => $exclude_ids
);
if( $terms = get_terms( $term_args ) ){
// If we have terms, echo each one with our markup.
foreach( $terms as $term ){
echo '<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>';
}
}
答案 1 :(得分:1)
您的代码可以正常工作,只需将 $ term-> term_name 替换为 $ term-> name ,即可正常工作。请参阅下面的代码以供参考。
$terms = get_terms( 'MY_TAXONOMY', array(
'orderby' => 'name',
'order' => 'ASC',
'exclude' => array(),
) );
$exclude = array("MY TERM", "MY TERM 2", "MY TERM 3");
$new_the_category = '';
foreach ( $terms as $term ) {
if (!in_array($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);