Skip to content

Instantly share code, notes, and snippets.

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