Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save spencejs/5226388 to your computer and use it in GitHub Desktop.
Save spencejs/5226388 to your computer and use it in GitHub Desktop.
List Taxonomy Terms For A Post Without Links
<?php
$terms = wp_get_post_terms($post->ID, 'request_statuses');
$count = count($terms);
if ( $count > 0 ){
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