Hi there, Joshua! Thanks for getting in touch. 🙂
Good question. You can create a query for the posts you want to display. Events are set up as a custom post type and can be queried using the default WordPress get_posts() function. You can also use the tribe_get_events() function, which accepts the same parameters, plus allows you to set the “eventDisplay” option to “upcoming”.
That might look something like this:
tribe_get_events(
'eventDisplay' => 'upcoming',
'posts_per_page' => 4,
'order' => 'ASC'
);
Of course, this will likely need to be modified to suit your specific needs. While this sort of customization is something we’ll have to leave in your hands, this should point you in the right direction. 🙂
Here is a direct link to our documentation so you can see all the options available to you.
Does that make sense? Will that work for you? Please let me know.
Cheers!
Geoff