Custom taxonomy term as class?

I’m trying to add a class to a container within a query, ideally I’d like to use the terms from a custom taxonomy I have setup (guide-categories).

As an example:

<div class="myclass *taxonomy term*">
  -content-
</div>

Any help would be much appreciated, been looking around trying to find out how to do this for a while, but haven’t had any luck yet!

1 Answer
1

You could do something like this

<?php $terms = get_the_terms( $post->ID, 'taxonomy_name' ); ?>
<div class="myclass<?php foreach( $terms as $term ) echo ' ' . $term->slug; ?>">
    <!-- content -->
</div>

http://codex.wordpress.org/Function_Reference/get_the_terms

Leave a Comment