我试图显示自定义帖子类型分类法的当前帖子类别名称,但排除其中一个类别。我在StackOverflow中看到不同的解决方案,但我似乎无法让它们中的任何一个为我工作。下面是我使用的代码,它工作得很好,但我不知道如何使用它来排除一个ID。
<?php $terms = get_the_terms( $post->ID , 'press_category' );
foreach ( $terms as $term ) {
$term_link = get_term_link( $term, 'press_category' );
if( is_wp_error( $term_link ) )
continue;
echo $term->name ;
}
?>
试试这个
<?php $terms = get_the_terms($post->ID, 'press_category');
foreach ($terms as $term)
{
$term_link = get_term_link($term, 'press_category');
if (is_wp_error($term_link)) continue;
if ($term->term_id != 222)
{
echo $term->name;
}
}
?>
将这行中的222更改为排除
的分类法id$term->term_id != 222