Orderby custom date fields with meta_query broken on OR relation
-
I have an ‘event’ post type that has custom start and end date fields. In a block on the home page, I’m trying to show only upcoming or ongoing events. So, to achieve this, I’m doing a meta_query that compares the two date fields to today’s date with the intent of showing events with start or end date equal to today’s date or later. After getting the returned events, I’m sorting by the start date. One important note, some events have end dates, while some are merely one day events with just a start date.
<?php /* Start the loop */ $args = array( 'post_status' => 'publish', 'post_type' => 'event', 'posts_per_page' => 5, 'meta_key' => 'x_start_date', 'orderby' => 'meta_value', 'order' => 'ASC', 'meta_query' => array( 'relation' => 'OR', array( 'key' => 'x_start_date', 'value' => date('Y-m-d'), 'compare' => '>=', 'type' => 'DATE' ), array( 'key' => 'x_end_date', 'value' => date('Y-m-d'), 'compare' => '>=', 'type' => 'DATE' ), ) ); $my_query = new WP_Query( $args ); ?> <?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
The query works but the ‘orderby’ is broken. If I take the second meta_query (end date) out of the equation and remove the ‘OR’ relation, the sort works perfectly. So the orderby statement is clearly failing when the second meta_query is added.
Does anyone have any ideas what I might be doing wrong? Any help is greatly appreciated!
- The topic ‘Orderby custom date fields with meta_query broken on OR relation’ is closed to new replies.