Advertisement
Guest User

Untitled

a guest
Feb 5th, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $limit = -1;
  2. $category = get_field('show_events_from_this_category');
  3. $term = get_term_by('id', $category, 'tribe_events_cat'); // This shows a taxonomy ID
  4.  
  5. $arr = array('eventDisplay' => 'upcoming', 'posts_per_page' => $limit, 'tax_query' => array('taxonomy' => 'tribe_events_cat','field' => 'slug', 'terms' => $term->slug));
  6.  
  7. $posts = tribe_get_events( $arr );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement