Home › Forums › General Issues › Sorting Date Range Issue › Reply To: Sorting Date Range Issue
I’m not sure if this will work with get_posts(), you may need to switch to WP_Query https://codex.wordpress.org/Class_Reference/WP_Query, if you do you’ll need to change numberposts
to posts_per_page
$args = array(
'numberposts' => -1,
'post_type' => 'events',
'meta_query' => array(
array(
'key' => 'display_on_upcoming_events',
'value' => '1',
'compare' => '=='
),
'date_clause' => array(
'key' => 'event_start_date',
'compare' => 'EXISTS'
),
),
'orderby' => array('date_clause' => 'ASC'),
);
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.