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