Skip to content

Instantly share code, notes, and snippets.

@joelstransky
Created August 4, 2016 02:09
Show Gist options
  • Save joelstransky/32c822975d573e247fe89c84733f27f5 to your computer and use it in GitHub Desktop.
Save joelstransky/32c822975d573e247fe89c84733f27f5 to your computer and use it in GitHub Desktop.
<?php
$terms = get_terms( array( ‘taxonomy’ => ‘research-categories’, ‘hide_empty’ => false ) );
foreach ( $terms as $term ) {
echo $term->name;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment