Skip to content

Instantly share code, notes, and snippets.

@ciorici
Created April 27, 2017 08:10
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save ciorici/5a9a8a8ed1545e15ea8b2d55b3b46f6a to your computer and use it in GitHub Desktop.
Save ciorici/5a9a8a8ed1545e15ea8b2d55b3b46f6a to your computer and use it in GitHub Desktop.
Featured Products Loop in WooCommerce 3.0
<ul class="products">
<?php
$args = array(
'post_type' => 'product',
'posts_per_page' => 12,
'tax_query' => array(
array(
'taxonomy' => 'product_visibility',
'field' => 'name',
'terms' => 'featured',
),
),
);
$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-->
@juniormc
Copy link

Thanks for de code.

@ValentineG
Copy link

Thank you!

@moreirapontocom
Copy link

And how to get all products except featured ones? Thank you.

@moreirapontocom
Copy link

Never mind. It's done. I just added the 'operator' => 'NOT IN', after terms

@Eduast
Copy link

Eduast commented Sep 13, 2018

Does somebody knows how to list my hidden products?

@SIAsibul
Copy link

Thank You

@omar93102
Copy link

Thank you! This really help me!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment