I am trying to order the posts by the Date Picker field of Advanced Custom Fields.
What I have done is this:
'post_type' => 'events',
'posts_per_page' => 10,
'meta_key' => 'start_date',
'orderby' => 'meta_value_num',
'order' => 'desc'
But it doesn’t order them properly. Any idea why?
Read more here: Order posts by ACF field Date Picker