Display featured products - WooCommerce
In WooCommerce, there is an option to make a product as featured one. That means, we can simply highlight / list out our special products.
To display featured products, we have two options.
Using Short Code
[featured_products per_page="8" columns="4" orderby="date" order="desc"]
Using WordPress Query
$args = array(
'post_type' => 'product',
'post_status' => 'publish',
'tax_query' => array(
array(
'taxonomy' => 'product_visibility',
'field' => 'name',
'terms' => 'featured',
'operator' => 'IN'
),
),
'posts_per_page' => 4,
'orderby' => 'menu_order',
'order' => 'ASC'
);
$featured_query = new WP_Query( $args );
if ($featured_query->have_posts()) :
while ($featured_query->have_posts()) :
$featured_query->the_post();
$product = get_product( $featured_query->post->ID );
// Output product information here
var_dump($product);
endwhile;
endif;
wp_reset_query(); // Reset Our Query
Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.
Recent Posts
- Disabling Payment Methods in WooCommerce Based on Conditions
- How to Update Product Quantity in WooCommerce Using Custom Code
- Dynamically Generating a Table of Contents in WordPress
- Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
- Understanding the Impact of git reset --hard Command
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.