Hello ,
I used following code :
$todays_events = tribe_get_events( array(
‘posts_per_page’ => -1,
‘start_date’ => date( ‘Y-m-d H:i:s’ )
) );
Yes this provides me today’s events in all scenarios but this also includes all future events as well.
like if we have an event like from 27-jan to 30-jan then above function also include this event.
So , now we need remove this type of events , please guide me for this.
Thanks.