Skip to content

Instantly share code, notes, and snippets.

@croosen
Last active August 29, 2015 14:06
Show Gist options
  • Save croosen/6724f435ec978b02d1b6 to your computer and use it in GitHub Desktop.
Save croosen/6724f435ec978b02d1b6 to your computer and use it in GitHub Desktop.
WordPress - Show categories of custom post type on template file
<?php
$taxonomy = 'your_taxonomy_name';
$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;?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment