Skip to content

Instantly share code, notes, and snippets.

@rfvcorreia
Created November 15, 2013 16:04
Show Gist options
  • Select an option

  • Save rfvcorreia/7486765 to your computer and use it in GitHub Desktop.

Select an option

Save rfvcorreia/7486765 to your computer and use it in GitHub Desktop.
Query Post by Week, Greater than current week. Add to WP_Query Args.
<?php
$args = array('date_query' => array(
array(
'week' => date('W'),
'compare' => '>='
),
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment