Skip to content

Instantly share code, notes, and snippets.

@dejanmarkovic
Created March 11, 2018 15:07
Show Gist options
  • Save dejanmarkovic/c7827b21f39783a1574980be70a0930d to your computer and use it in GitHub Desktop.
Save dejanmarkovic/c7827b21f39783a1574980be70a0930d to your computer and use it in GitHub Desktop.
WP Query Last year
$lastyear = date("Ymd", strtotime("-1 year"));
$query->set('date_query', array(
array(
'column' => 'post_date_gmt',
'after' => $lastyear,
'inclusive' => true,
),
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment