ACF Date Based wp_query

Question

I’ve been trying to order these exhibitions based on the end_date custom field created with Advanced Custom Fields. I’m not able to properly get this working. I need the most recent dates first. I need to also only get posts with the exhibition_status of ‘past’. For the life of me I can’t get this working and the below code is just the latest non working interation.

$args = array (
'post_type'         => 'exhibitions',
'meta_query'        => array(
    'relation'      => 'OR',
        'query_one'     => array(
            'key'       => 'exhibition_status',
            'value'     => 'past',
        ),
        'query_two'     => array(
            'key'       => 'end_date',
            'compare'   => '>=',
        ), 
),
'orderby'                => 'end_date',
'order'                  => 'ASC',
'post_status' => 'publish',
'posts_per_page' => 10,
'paged' => get_query_var( 'paged' ),

);

The date is based on this format F j, Y

How do I get all posts ordered by the ACF field ‘end_date’ and only get posts where the ACF field ‘exhibition_status’ equals ‘past’?

0
, , smack-a-bro 3 years 2020-07-02T11:10:48-05:00 0 Answers 63 views 0

Leave an answer

Browse
Browse