How to Build a Hotel Booking Website Using Meta Box - P2 - Booking Page in Backend - Meta Box

PHOTO EMBED

Sun Nov 26 2023 07:55:25 GMT+0000 (Coordinated Universal Time)

Saved by @dmsearnbit #php

function update_post( $post_id ) {
   $post = array(
     'ID'         => $post_id,
     'post_title' => '#'.$post_id,
     'post_name'  => $post_id,
   );
   wp_update_post( $post );
   update_post_meta($post_id, 'order', $post_id);
}
add_action('save_post_booking', 'update_post', 20);
content_copyCOPY

https://metabox.io/build-hotel-booking-web-use-meta-box-p2/