RPeraltaJr
4/15/2017 - 7:47 PM

Get Custom Taxonomy (from Custom Post UI Type plugin) Values and display them. Source: https://wordpress.stackexchange.com/questions/10175/h

Get Custom Taxonomy (from Custom Post UI Type plugin) Values and display them. Source: https://wordpress.stackexchange.com/questions/10175/how-to-display-custom-taxonomies-in-posts

<?php 
  // The easiest way to list terms of custom taxonomy and display them would be to use
  get_the_term_list( $id, $taxonomy, $before, $sep, $after ) 
?> 

<!-- For example in the loop, my custom taxonomy is 'jobs' list as li -->
<ul><?php echo get_the_term_list( $post->ID, 'jobs', '<li class="jobs_item">', ', ', '</li>' ) ?></ul>