Skip to content

Instantly share code, notes, and snippets.

@wpflames
Created November 26, 2020 07:35
Show Gist options
  • Select an option

  • Save wpflames/10b5aba1bf30427fd7605b2e32854982 to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/10b5aba1bf30427fd7605b2e32854982 to your computer and use it in GitHub Desktop.
How to list Custom Post Type's Taxonomies
<?php
if( $terms = get_terms( array(
'taxonomy' => 'YOUR_TAXONOMY',
'orderby' => 'name'
) ) ) : ?>
<ul class="faq-filter">
<li><a href="">All</a></li>
<?php foreach ( $terms as $term ) : ?>
<li><a id="faq-filter-id-<?php echo $term->term_id; ?>" href=""><?php echo $term->name; ?></a></li>
<?php endforeach; ?>
</ul>
<?php endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment