Support

Account

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

  • I found out that when using ACF Pro (5.1.5) does already convert the date field’s content to a string, so you will get a fatal error (Call to a member function format() on a non-object) when using

    
    $date = DateTime::createFromFormat($format_in, get_field('date-start'));
    

    What does work is

    
    $date = new DateTime( get_field('date-start') );