-
-
Save leanneromak/5864d2a4f51bb3f8187f to your computer and use it in GitHub Desktop.
WP Query for events posts with upcoming dates
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
<?php | |
$current_date = date(Ymd); | |
$event_args = array( | |
'post_type' => 'event_post_type', | |
'meta_query' => array( | |
array( | |
'key' => 'date_field', | |
'value' => $current_date, | |
'compare' => '>=' | |
) | |
), | |
); | |
$events = new WP_Query( $event_args ); | |
// do query loop stuff | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment