Advertisement
BakerMan

Add event categories to list view

Oct 17th, 2013
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. add_action('tribe_events_before_the_content', 'add_event_categories');
  2.  
  3. function add_event_categories() {
  4.     if (tribe_is_upcoming()) // You can add more conditionals to catch other views, etc
  5.         echo tribe_get_event_categories();
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement