nickberens360
5/7/2014 - 3:18 PM

Wordpress: display custom taxonomy name

Wordpress: display custom taxonomy name

<?php

$terms = get_the_terms( $post->ID , 'taxonomyname' );

foreach ( $terms as $term ) {

echo $term->name;

}

?>