eventorganiser_occurrence_broken
(action)
Triggered after an occurrence has been broken from an event.
Parameters
int
|
$post_id |
The ID of the original parent event
|
int
|
$occurrence_id |
The ID of the occurrence being broken
|
int
|
$new_event_id |
The ID of the newly created event
|
Example Usage
add_action( 'eventorganiser_occurrence_broken', 'my_callback_function', 10, 3 );
function my_callback_function( $post_id, $occurrence_id, $new_event_id ){
//Do something
};