woocommerce product Categery

<div class="prodct-listing">
<div class="container">
	<div class="row top-row">
	    <?php do_action( 'woocommerce_before_shop_loop'); ?>
	</div>

	<div class="related products">
    	<ul class="products columns-4">
	        <?php 

			woocommerce_product_loop_start();

			if ( wc_get_loop_prop( 'per_page' ) ) {

		        while ( have_posts() ):
					
					the_post();
		            
		            do_action( 'woocommerce_shop_loop' );

					wc_get_template_part( 'content', 'product' );
					
		        endwhile; 

	    	}

	        woocommerce_product_loop_end();

	        ?>
        </ul>
    </div>

	<?php do_action( 'woocommerce_after_shop_loop' ); ?>

 </div>
 </div>

Leave a comment