’product‘,
’posts_per_page‘ => -1,
);
$products = new WP_Query( $args );
if ( $products->have_posts() ) :
echo ’
’;
while ( $products->have_posts() ) : $products->the_post();
global $product;
?>
while ( $products->have_posts() ) : $products->the_post();
global $product;
?>
’;
else :
echo ’No products found‘;
endif;
wp_reset_postdata();
get_footer();