'product',
'posts_per_page' => $products_per_page,
'paged' => $paged
);
// Get the products
$products = new WP_Query($args);
// Start the Loop
if ($products->have_posts()) :
echo '
';
while ($products->have_posts()) : $products->the_post();
wc_get_template_part('content', 'product');
endwhile;
echo '
';
// Pagination
echo '
';
// Reset the post data
wp_reset_postdata();
else :
echo '