0

I have dates stored in the format d-m-Y, and i want to display any posts that are in the past, before today.

    $args = array (
        'post_type'=>'property',
        'post_status'=>'publish',
        'posts_per_page'=> 8,
        'paged'=> $paged,
        'meta_query' => array(
            'key' => 'auction_date',
            'value' => date( 'd-m-Y'),
            'compare' => '<',
            'type' => 'DATE'
        ),
      );

This doesn't seem to work and i can't figure out why. Any suggestions would be much appreciated.

1 Answer 1

0

ACF stores it's dates in Ymd format, this is why i couldn't compare.

Make sure your date is in Ymd format when you compare it against an ACF datefield.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.