Support

Account

Home Forums Front-end Issues Date output Reply To: Date output

  • While none of that complex code above seemed to work, simply using this did for me:

    <?php $date = get_field('my-date');
    $date2 = date("F j, Y", strtotime($date)); ?>
    
    <?php echo $date2; ?>