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