Quiero agregar un rango de fechas de entrega estimadas. Por ejemplo, si se pide hoy (21 de febrero)
La salida requerida debería ser algo así:
Entrega estimada por 24 feb, jueves to 26 feb, sábado
add_action( 'woocommerce_single_product_summary', 'delivery_date_range',11 ); function delivery_date_range() { date_default_timezone_set( 'India' ); // date_from must be from 3rd day (from order date) // date_to must be the next 5th days $html = "<br><div>Estimated delivery by {$date_from} to {$date_to}</div>"; echo $html; }add_action('woocommerce_single_product_summary', 'delivery_date_range', 11); function delivery_date_range() { // date_from must be from 3rd day (from order date) // date_to must be the next 5th days $date = date('Ym-d'); $three_day_from_today = date('j F, Y', strtotime($date . ' + 3 days')); $fifth_day_from_today = date('j F, Y', strtotime($date . ' + 5 days')); $html = "<br><div>Estimated delivery by {$three_day_from_today} to {$fifth_day_from_today}</div>"; echo $html; }Consulte el manual para el formato de fecha de PHP