Home › Forums › Backend Issues (wp-admin) › Date picker display disappearing › Reply To: Date picker display disappearing
Please save the date data as yymmdd. This is the default and most effective format.
To then retrieve only the year data, you can do this:
$date = get_field('date');
// $date = 19881123 (23/11/1988)
// extract Y,M,D
$y = substr($date, 0, 4);
source: http://www.advancedcustomfields.com/resources/field-types/date-picker/
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.