Skip to content

Instantly share code, notes, and snippets.

@alwayscoding
Last active December 14, 2015 19:09
Show Gist options
  • Save alwayscoding/5134492 to your computer and use it in GitHub Desktop.
Save alwayscoding/5134492 to your computer and use it in GitHub Desktop.
WORDPRESS: GET CATEGORY SLUG
<?php
if(is_category()) {
$category = get_query_var('cat');
$current_cat = get_category($cat);
echo 'The slug is ' . $ current_cat->slug;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment