eventorganiser_change_booking_occurrence
(action)
Pro
Triggered when a booking is moved from one occurrence to another
Parameters
int
|
$booking_id |
The ID of the booking
|
int
|
$new_occurrence_id |
The ID of the new occurrence
|
int
|
$occurrence_id |
The ID of the occurrence the booking was formerly attached to.
|
Example Usage
add_action( 'eventorganiser_change_booking_occurrence', 'my_callback_function', 10, 3 );
function my_callback_function( $booking_id, $new_occurrence_id, $occurrence_id ){
//Do something
};