Skip to content

Instantly share code, notes, and snippets.

@jamigibbs
Created May 1, 2015 17:41
Show Gist options
  • Save jamigibbs/3882fd8c42dd011e8af5 to your computer and use it in GitHub Desktop.
Save jamigibbs/3882fd8c42dd011e8af5 to your computer and use it in GitHub Desktop.
TEC: Query Specific Event Category
$events_query = tribe_get_events(
array(
'eventDisplay' => 'upcoming',
'posts_per_page'=> 3,
'tax_query' => array(
array(
'taxonomy' => 'tribe_events_cat',
'field' => 'slug',
'terms' => 'your-category-here'
)
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment