我想在类别页面(存档)中显示与帖子相关的所有分类法。
我有以下代码
<?php
$cat1 = $cat;
$args = array( 'posts_per_page' => -1, 'category' => $cat1 );?>
$myposts = get_posts( $args );
foreach ( $myposts as $post ) {
$product_terms = wp_get_object_terms($post->ID, 'Brands');
echo '<ul>';
foreach(array_unique($product_terms) as $term) {
echo '<li><a href="'.get_term_link($term->slug, 'Brands').'">'.$term->name.'</a></li>';
}
echo '</ul>';
}
?>
但它返回分类的重复项。我试过 array_unique 但它不起作用。能否请你帮忙。谢谢