<?php echo get_the_term_list($post->ID, 'people', 'People: ', ', ', ''); ?>
<?php $terms_as_text = get_the_term_list( $post->ID,'people', 'People: ', ', '); if (!empty($terms_as_text)) echo '<p>', strip_tags($terms_as_text) ,'</p>'; ?>
The standard way of spitting out those custom taxonomy tags is to use this function, yes?
But that makes each term a link, but I don't want a link, I just want plain text.
I would appreciate any help or ideas on how to do this. Thanks!