Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 23, 2013 05:09
Show Gist options
  • Save spencejs/5226541 to your computer and use it in GitHub Desktop.
Save spencejs/5226541 to your computer and use it in GitHub Desktop.
List All Terms In Taxonomy
<?php //List All Terms from Custom Taxonomy
$args = array(
'taxonomy' => 'shop_artists',
'orderby' => 'name',
'hierarchical' => False,
'title_li' => '<h2>Artists</h2>'
);
?>
<ul>
<?php wp_list_categories( $args ); ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment