Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 23, 2013 05:29
Show Gist options
  • Save spencejs/5226580 to your computer and use it in GitHub Desktop.
Save spencejs/5226580 to your computer and use it in GitHub Desktop.
Query By Date And Expiration (Events Loop)
<?php
$currentdate = date("Y-m-d");
$wp_query = new WP_Query();
$wp_query->query('cat=4,5&posts_per_page=6&meta_key=date&orderby=meta_value&order=ASC&meta_compare=>=&meta_value=' . $currentdate .'&paged='.$paged);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment