eventorganiser_get_event_schedule
(filter)
Filters the schedule metadata for an event (as returned by `eo_get_event_schedule()`.
See documentation on eo_get_event_schedule()
for more details.
Parameters
array
|
$event_details |
Details of the event's dates and recurrence pattern
|
int
|
$post_id |
The ID of the event
|
Example Usage
add_filter( 'eventorganiser_get_event_schedule', 'my_callback_function', 10, 2 );
function my_callback_function( $event_details, $post_id ){
//Change first value and return it
return $event_details
};