Skip to content

Instantly share code, notes, and snippets.

@alexdmejias
Created April 9, 2013 20:06
Show Gist options
  • Save alexdmejias/5348919 to your computer and use it in GitHub Desktop.
Save alexdmejias/5348919 to your computer and use it in GitHub Desktop.
get the category slug. Use within a category page
function category_slug($print = true) {
$cat = get_category(get_query_var('cat'));
if ($print) {
echo $cat->slug;
} else {
return $cat->slug;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment