'post',
'posts_per_page' => $noOfPosts,
'post_status' => 'publish',
'ignore_sticky_posts' => 1,
'category__in' => $category,
);
$fposts = new WP_Query($fposts_args);
if ($fposts->have_posts()):
while ($fposts->have_posts()):
$fposts->the_post();
get_template_part('template-parts/content', 'post');
endwhile;
wp_reset_postdata();
endif;
wp_reset_query();
?>