philbowell of Factory Pattern
11/13/2018 - 2:45 PM

Display Custom Taxonomies as Links for Post

<?php $terms = wp_get_post_terms( $post->ID, 'jetpack-portfolio-type' );
	  foreach ( $terms as $term ) {
		$term_link = get_term_link( $term, 'jetpack-portfolio-type' );
			if( is_wp_error( $term_link ) )
			continue;
			echo '<li><a href="' . $term_link . '">' . $term->name . '</a></li>';
		}
  ?>