Skip to content

Instantly share code, notes, and snippets.

@leanneromak
Created August 4, 2015 21:07
Show Gist options
  • Save leanneromak/5864d2a4f51bb3f8187f to your computer and use it in GitHub Desktop.
Save leanneromak/5864d2a4f51bb3f8187f to your computer and use it in GitHub Desktop.
WP Query for events posts with upcoming dates
<?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