Hello,
This is kind of a follow-up to this thread: https://theeventscalendar.com/support/forums/topic/event-custom-meta-fields-for-wp_query/#post-1232502
While I got that working for one-time events, when I try to display recurring events using either _EventStartDate or tribe_get_start_date($post, false, $format = 'M' ); it defaults to showing the *first* date of the recurring events.
Using a custom wp_query or using tribe_get_events(); how can I display the start dates of one-time events along with the individual dates of recurring events?
Example:
Mar 12 My One-Time Event
Mar 17 First Instance of Recurring Event
Mar 20 Another One-Time Event
Mar 24 Second Instance of Recurring Event
Mar 31 Third Instance of Recurring Event
Using _EventStartDate will return March 17 for all instances of the recurring event so how can I get the individual dates?
Thanks!