How to get a taxonomy term name by the slug?

If I know a taxonomy term slug, how can I get that term’s name? 3 The function you are looking for is get_term_by. You would use it as such: <?php $term = get_term_by(‘slug’, ‘my-term-slug’, ‘category’); $name = $term->name; ?> This results in $term being an object containing the following: term_id name slug term_group term_taxonomy_id taxonomy … Read more