Add few specific post ids to wp_query
I have following args to get recent posts,
$args = array(
'date_query' = array( array( 'after' = '1 week ago' ) ),
'posts_per_page' = 15,
'ignore_sticky_posts' = 1,
'meta_key' = 'post_views_count',
'orderby' = 'meta_value_num',
'order' = 'DESC',
'cat' = '-907,-908,-909'
);
Now I need include few specific Ids to same query. So I tried follows, but it doesn't work
$highlights = array('8308', '8315');
$args = array(
'date_query' = array( array( 'after' = '1 week ago' ) ),
'posts_per_page' = 15,
'ignore_sticky_posts' = 1,
'meta_key' = 'post_views_count',
'orderby' = 'meta_value_num',
'order' = 'DESC',
'cat' = '-907,-908,-909',
'post__in' = $highlights
);
Now it just giving me those two posts.