I want to query the event, but I don't know how to query only the first instance of the Recurring Event, Since my code query all the event, and it looks like a mess on the archive page, I just want to query the first instance.
$args = [
'posts_per_page' => 999,
'order' => 'DESC',
'tax_query' => [
[
'taxonomy' => 'tribe_events_cat',
'field' => 'slug',
'terms' => 'free-course',
'operator' => 'NOT IN'
]
],
];
$Eventlistings = tribe_get_events($args);