delarge
9/15/2015 - 10:23 PM

Get taxonomy terms as list for current post type

Get taxonomy terms as list for current post type

				<?php

				$terms = get_the_terms( $post->ID, 'taxonomy-slug' );
					if($terms){ ?>
					<?php
					foreach ( $terms as $term ) {
						echo $term->name;
					}
				} // end if Terms
				?>