Home › Forums › General Issues › Display day and month from date_picker field. › Reply To: Display day and month from date_picker field.
Hi,
Try this:
<?php
$datetime_string = get_field('fecha_del_evento');
$datetime = new DateTime(date('Y-m-d', strtotime($datetime_string)));
echo $month = date_i18n('M', strtotime($datetime_string));
echo $day = $datetime_object->format("d");
?>
It is possible that you need to change the way you save the date values in DB. d/m/Y is really not optimal for datetime interactions and you should save it as Ymd.
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.