Skip to content

Instantly share code, notes, and snippets.

@jo-snips
Created June 21, 2012 17:37
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jo-snips/2967263 to your computer and use it in GitHub Desktop.
Save jo-snips/2967263 to your computer and use it in GitHub Desktop.
The Events Calendar: Custom tribe_meta_event_cats
<?php
$terms = wp_get_post_terms(get_the_ID(), 'tribe_events_cat');
$count = count($terms);
if ( $count > 0 ){
foreach ( $terms as $term ) {
echo '<a href="'. get_term_link($term->slug, 'tribe_events_cat') .'" class="cat_' . $term->slug . '">' . $term->name . '</a>';
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment