Skip to content

Instantly share code, notes, and snippets.

@JackNUMBER
Created August 12, 2014 20:23
Show Gist options
  • Save JackNUMBER/ecddc4529b8939017987 to your computer and use it in GitHub Desktop.
Save JackNUMBER/ecddc4529b8939017987 to your computer and use it in GitHub Desktop.
[Wordpress] List categories in a taxonomy
<?
$args = array(
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => false
);
$categories = get_terms('taxonomy_name', $args);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment