eventorganiser_deleted_booking
(action)
Pro
Triggered immediately after booking is permanantly deleted
Parameters
int
|
$booking_id |
The ID of the booking
|
Example Usage
add_action( 'eventorganiser_deleted_booking', 'my_callback_function', 10, 1 );
function my_callback_function( $booking_id ){
//Do something
};