Advertisement
olie480

WP - Tribe Events query by category

Jul 27th, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. global $post;
  4. $all_events = tribe_get_events(
  5.     array(
  6.         'eventDisplay'=>'upcoming',
  7.         'posts_per_page'=>1,
  8.         'tax_query'=> array(
  9.             array(
  10.                 'taxonomy' => 'tribe_events_cat',
  11.                 'field' => 'slug',
  12.                 'terms' => 'your-category-slug'
  13.             )
  14.         )
  15.     )
  16. );
  17.                                
  18. foreach($all_events as $post) {
  19. setup_postdata($post);
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement