Hey, I’m trying to get a feed of events by a specific category but it doesn’t seem to be working correctly. This is the code I have now:
$events_array = tribe_get_events(
array(
‘eventDisplay’=>’upcoming’,
‘posts_per_page’=>3,
‘tax_query’=> array(
array(
‘taxonomy’ => ‘tribe_events_cat’,
‘field’ => ‘slug’,
‘terms’ => ‘signature-event’
)
)
)
);
I’m trying to get the events by the slug “signature-event”. My code used to work but it seems an update has broken it. Any help appreciated! Thanks