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.
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.
Share Improve this question asked Jan 30, 2020 at 11:12 reigns1989reigns1989 171 silver badge6 bronze badges1 Answer
Reset to default 0ACF 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.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1742412992a4439185.html
评论列表(0条)