//Get selected terms of a post by taxonomy $selectedTerms = wp_get_post_terms(get_the_ID(),'TAXONOMY_NAME'); foreach($selectedTerms as $term){ echo $term->name; }