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
?
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
?
1 Answer
Reset to default 1I've modified your existing code.Can you please try the code bellow:
$args = array (
'post_type' => 'exhibitions',
'meta_query'=> array(
'relation' => 'AND',
array(
'key' => 'exhibition_status',
'value' => 'past',
),
array(
'key' => 'end_date',
'compare' => 'EXISTS',
'type' => 'DATE'
),
),
'meta_key' => 'end_date',
'orderby' => 'meta_value',
'order' => 'ASC',
'post_status' => 'publish',
'posts_per_page' => 10,
'paged' => get_query_var( 'paged' ),
);
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1742297283a4417380.html
'meta_key' => 'end_date'
and set the'order_by' => 'meta_value'
. – Shazzad Commented Jul 2, 2020 at 16:37'relation' => 'OR'
should be'relation' => 'AND'
– Shazzad Commented Jul 2, 2020 at 16:54