Skip to content

Instantly share code, notes, and snippets.

@thisissandip
thisissandip / booking-creation-logger.php
Last active April 7, 2025 10:42
booking-creation-logger: Logs details of the new booking in WooCommerce > status > logs
/**
* Monitor new booking creation using wc_get_logger
*/
function log_all_new_bookings( $booking_id ) {
if ( ! function_exists( 'get_wc_booking' ) ) {
return;
}
$booking = get_wc_booking( $booking_id );