Display title of current Custom Post Type’s taxonomy $terms = get_the_terms( $post->ID, 'YOUR_TAXONOMY' ); foreach($terms as $term) { echo $term->name; echo $term->slug; }