Advertisement
another_nickname

Events category list - Not working

Feb 1st, 2012
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. $terms = get_terms("tribe_events_cat");
  2. $count = count($terms);
  3. if ( $count > 0 ){
  4.     echo '<ul class="events-cat-menu">';
  5.     foreach ( $terms as $term ) {
  6.             echo '<li class="cat_'. $term->slug .'"><a href="'. get_term_link($term->slug, 'tribe_events_cat') .'">' . $term->name . '</a></li>';
  7.     }
  8.     echo '</ul>';
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement