Skip to content

Instantly share code, notes, and snippets.

View aokolovskis's full-sized avatar

Aleksjes Okolovskis aokolovskis

View GitHub Profile
alert("Hello World!");
@jo-snips
jo-snips / custom_tribe_meta_event_cats.php
Created June 21, 2012 17:37
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>';
}
}
?>