Skip to content

Instantly share code, notes, and snippets.

@davemac
Created January 23, 2014 12:02
Show Gist options
  • Select an option

  • Save davemac/8577491 to your computer and use it in GitHub Desktop.

Select an option

Save davemac/8577491 to your computer and use it in GitHub Desktop.
WordPress check if category is a parent
// check if category is a parent
function dmc_is_parentcat() {
$cat = get_query_var('cat');
$category = get_category($cat);
$category->parent;
return ( $category->parent == '0' ) ? true : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment