Skip to content

Instantly share code, notes, and snippets.

@hemusyl
Forked from jameskoster/index.php
Created March 12, 2017 06:30
Show Gist options
  • Save hemusyl/1835aa5b70d10c61b1e550dd82b6795d to your computer and use it in GitHub Desktop.
Save hemusyl/1835aa5b70d10c61b1e550dd82b6795d to your computer and use it in GitHub Desktop.
WooCommerce - Sample products loop
<ul class="products">
<?php
$args = array(
'post_type' => 'product',
'posts_per_page' => 12
);
$loop = new WP_Query( $args );
if ( $loop->have_posts() ) {
while ( $loop->have_posts() ) : $loop->the_post();
wc_get_template_part( 'content', 'product' );
endwhile;
} else {
echo __( 'No products found' );
}
wp_reset_postdata();
?>
</ul><!--/.products-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment