Hey,
I am using this plugin for delivery details.
I want day of week from selected delivery date but I just got one day thursday in any date of the month.
This is my code:
<?php _e( ‘Delivery Day:’, ‘wpo_wcpdf’); ?></th>
<td><?php $unFormate = $wpo_wcpdf->custom_field(‘jckwds_date’);
$get = explode(“/”,”$unFormate”);
$dates = $get[2].”-“.$get[1].”-“.$get[0];
$weekday = date(‘l’, strtotime($dates)); // note: first arg to date() is lower-case L
echo $weekday;
?>
How can we get the right day of the week?
Thank You.