All Product Show in loop Without any Categoery in Woo Commerce
<ul class="row product-list">
<?php $args = array( 'post_type' => 'product', 'posts_per_page' => -1 );
query_posts( $args );
while ( have_posts() ) : the_post();
//print_r($product); //Dump product info
$img_url = $image = wp_get_attachment_image_src( get_post_thumbnail_id( $loop->post->ID ), 'single-post-thumbnail' );
$link = $product->get_permalink();
?>
<li class="col-lg-3 col-md-3 col-sm-3 col-xs-6 thumbnail">
<div class="caption">
<?php echo do_shortcode('<a href="'.$link.'" class="btn add-to-cart" title=" ">ADD TO CART</a>'); ?>
<?php echo do_shortcode('<a href="'.$link.'" class="btn view-details"title="">VIEW DETAILS</a>'); ?>
</div>
<a href=""><img src="<?php echo $image[0]; ?>" width="" height="" alt="image"></a>
<h4><?php the_title(); ?></h4>
<?php echo $product->get_price_html(); ?>
</li>
<?php
endwhile;?> </ul>
Comments
Post a Comment