Skip to content

Instantly share code, notes, and snippets.

@braginteractive
Created July 30, 2016 02:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save braginteractive/2f2c3336db36b62c200ad0638d1d5d89 to your computer and use it in GitHub Desktop.
Save braginteractive/2f2c3336db36b62c200ad0638d1d5d89 to your computer and use it in GitHub Desktop.
Just display the parent categories of a CPT taxonomy
$taxonomy = 'inventory_category';
$cat_args = array(
'taxonomy' => 'inventory_category',
'parent' => 0,
'number' => 10,
'hide_empty' => true
);
$terms = get_terms($cat_args);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment