eventorganiser_pre_break_occurrence
(action)
Triggered before an occurrence is 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
|
Example Usage
add_action( 'eventorganiser_pre_break_occurrence', 'my_callback_function', 10, 2 );
function my_callback_function( $post_id, $occurrence_id ){
//Do something
};