Skip to content

Instantly share code, notes, and snippets.

@ilkeryilmaz
Last active August 29, 2015 14:14
Show Gist options
  • Save ilkeryilmaz/cd0cd843a0557fa66fba to your computer and use it in GitHub Desktop.
Save ilkeryilmaz/cd0cd843a0557fa66fba to your computer and use it in GitHub Desktop.
Wordpress get category ID alternative
function wt_get_category_ID() {
$category = get_the_category();
return $category[0]->cat_ID;
}
//Use
wt_get_category_ID();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment