Get the delivery date and time for an order
The delivery date and time slot are saved to an order as post meta. This means it's possible to fetch using PHP. You can get three different bits of data: the delivery date, the time slot, and the timestamp.
$date = $order->get_meta( 'jckwds_date' ); $time_slot = $order->get_meta( 'jckwds_timeslot' ); $timestamp = $order->get_meta( 'jckwds_timestamp' );