oliwa
7/25/2016 - 8:03 AM

Get Terms from a Custom Post Type: 2 Methods

Get Terms from a Custom Post Type: 2 Methods

<!-- Get Taxonomy Title from active Taxonomy -->

<?php // https://wordpress.org/support/topic/taxonomy-title-output ?>
<?php $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); echo $term->name; ?>

<!-- List all Taxonomy Terms that are assigned -->
<?php // https://codex.wordpress.org/Function_Reference/the_terms ?>
<?php the_terms( $post->ID, 'glossary-categories', '', ', ', ''); ?>