'product', 'stock' => 1, 'posts_per_page' => $product_count, 'orderby' =>'date','order' => 'DESC' );
$products = new WP_Query( $query_args );
$catorgies = array();
while($products->have_posts()){
$products->the_post();
wc_get_template_part( 'content-product-home' );
}
wp_reset_postdata();
?>