Skip to content

Instantly share code, notes, and snippets.

@gabhi
Created March 26, 2014 09:08
Show Gist options
  • Save gabhi/9779327 to your computer and use it in GitHub Desktop.
Save gabhi/9779327 to your computer and use it in GitHub Desktop.
get subcategories of wordpress category
$args = array(
'child_of' => $_GET['id']
);
$sub_categories = get_categories($args);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment