Home › Forums › ACF PRO › Migrating from timestamp to Date Field › Reply To: Migrating from timestamp to Date Field
Using update field does not work for date (it works for string).
So the solution I’ve put in place is :
$this->birthdate = date( "Ymd", $this->birthdate );
update_post_meta ($this->ID, 'birthdate', $this->birthdate);
update_post_meta ($this->ID, '_birthdate', 'field_53e11dd3841f6'); // CONSTANT KEY
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.