Skip to content

Instantly share code, notes, and snippets.

@emaildano
Last active August 29, 2015 13:58
Show Gist options
  • Save emaildano/10201643 to your computer and use it in GitHub Desktop.
Save emaildano/10201643 to your computer and use it in GitHub Desktop.
List custom taxonomies without links.
<?php
$args = array('number' => '1',);
$terms = get_terms('project status', $args );
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