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') );
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.