Created
May 1, 2015 17:41
-
-
Save jamigibbs/3882fd8c42dd011e8af5 to your computer and use it in GitHub Desktop.
TEC: Query Specific Event Category
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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