Wordpress: How to get the tag's slug on the tag page

podcastfan88 picture podcastfan88 · Nov 15, 2013 · Viewed 20k times · Source

I'm on the tag.php page. How can I get its slug?

single_tag_title() gets the title just fine, but the slug?

Answer

Dustin picture Dustin · Nov 15, 2013

You can get the slug by getting the queried object while on the tag page, like so:

<?php
    $tag = get_queried_object();
    echo $tag->slug
?>