I have to get latest posts from only last 12 months by comparing the acf custom field datepicker value
$args = array(
'post_type' => 'news',
'paged' => (get_query_var('paged')) ? get_query_var('paged') : 1,
'meta_query' => array(
array(
'key' => 'publication_date',
'after' => '-365 days',
),
),
'orderby' => 'meta_value',
'order' => 'DESC',
'hide_empty' => 0,
'pad_counts' => false,
);