Support

Account

Home Forums General Issues Date not showing up Reply To: Date not showing up

  • Hi @justawebbie

    I had the same problem with echoing the date values.
    Which PHP version you are working on?

    Try using “date() and “strtotime()””..

    <?php
    echo date('F d, Y', strtotime( get_field('event_starts') );
    ?>

    .. instead of “DateTime”.

    Hope this will solved your problem.