Skip to content

Instantly share code, notes, and snippets.

@dvdopi
Created April 17, 2020 08:48
Show Gist options
  • Save dvdopi/9076f7daa428a2df6a47af344dbdbf17 to your computer and use it in GitHub Desktop.
Save dvdopi/9076f7daa428a2df6a47af344dbdbf17 to your computer and use it in GitHub Desktop.
wordpress - get all taxonomy items of a particular taxonomy
$categories = get_terms(array(
'taxonomy' => 'taxonomy-slug',
'hide_empty' => false,
'order' => 'DESC'
));
foreach ($categories as $category) {
Print_r($category);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment