Home › Forums › General Issues › Sorting Date Range Issue › Reply To: Sorting Date Range Issue
Thanks John! I adjusted the code a bit and it works great. Here’s what worked for me in case anyone else has this issue.
$args = array(
'posts_per_page' => -1,
'post_type' => 'events',
'order' => 'ASC',
'meta_query' => array(
array(
'key' => 'display_on_upcoming_events',
'value' => '1',
'compare' => '=='
),
'date_clause' => array(
'key' => 'event_date',
'compare' => 'EXISTS'
),
),
'orderby' => 'meta_value_num',
'meta_key' => 'event_date',
);
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.