Skip to content

Instantly share code, notes, and snippets.

@reediredale
Created June 28, 2012 02:20
Show Gist options
  • Save reediredale/3008355 to your computer and use it in GitHub Desktop.
Save reediredale/3008355 to your computer and use it in GitHub Desktop.
Displaying Custom WordPress Taxonomy List Items Without the Links
<?php $terms_as_text = get_the_term_list( $post->ID, 'filter', '', ', ', '' ) ;
echo strip_tags($terms_as_text); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment