Display title of current Custom Post Type’s taxonomy 2020-05-15 by Gabor Leave a Comment $terms = get_the_terms( $post->ID, 'YOUR_TAXONOMY' ); foreach($terms as $term) { echo $term->name; echo $term->slug; }
Leave a Reply