WP Query Last year
$lastyear = date("Ymd", strtotime("-1 year"));
$query->set('date_query', array(
array(
'column' => 'post_date_gmt',
'after' => $lastyear,
'inclusive' => true,
),
)
);