目前,我正在显示自定义分类法(contenttags)的列表。这些内容使用下面的代码显示在列表中,然后显示该分类下的帖子。
<?php
$taxonomy = \'contenttags\';
$terms = get_terms($taxonomy); // Get all terms of a taxonomy
if ( $terms && !is_wp_error( $terms ) ) :
?>
<ul>
<?php foreach ( $terms as $term ) { ?>
<li><a href="<?php echo get_term_link($term->slug, $taxonomy); ?>"><?php echo $term->name; ?></a></li>
<?php } ?>
</ul>
<?php endif;?>
我希望它成为一个表单,用户可以选择任意多个术语,并点击“过滤器”,返回所有分类术语的帖子,而不是只选择一个术语。
我到处都找过了,你知道怎么做吗!