Home › Forums › General Issues › using both published date and date picker to sort posts › Reply To: using both published date and date picker to sort posts
post_date_gmt is not a meta field. Remove it from your meta query.
WP does not have an option to order posts by the post_date_gmt value, only date or “post_date”
Also, ACF does not store date fields as a date. Use number of string, and you need to set a compare or value
'datum_clause' => array(
'meta_key' => 'datum',
'compare' => 'EXISTS'
),
Then in your order by use
$wp_query_args['orderby'] = array(
'datum_clause' => 'DESC',
'date' => 'DESC'
);
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.