Created
November 2, 2022 13:50
-
-
Save stoffl6781/bb55a6e80571af05c9201151ce477782 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$args = array( | |
'post_type' => 'event', | |
'meta_query' => array( | |
'relation' => 'AND', | |
'event_start_date_clause' => array( | |
'key' => '_event_start_date', | |
'compare' => 'EXISTS', | |
), | |
'event_start_time_clause' => array( | |
'key' => '_event_start_time', | |
'compare' => 'EXISTS', | |
), | |
), | |
'orderby' => array( | |
'event_start_date_clause' => 'ASC', | |
'event_start_time_clause' => 'ASC', | |
), | |
); | |
$loop = new WP_Query( $args ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment