Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

SOLVED: Get featured products in Woocommerce 3

Tanvir:

I want to add Featured Products for upsell (or Recent Products OR Best Selling Products) in New order Email template. It works like Upsell with email marketing. How do I add it to woocommerce email template so that there is a section in the end of the email which shows my featured/Recent/best selling products. I tried using this code in my New order Email template but nothing works. I use all latest version of wordpress n woocommerce.


$args = array(
'post_type' => 'product',
'meta_key' => '_featured',
'meta_value' => 'yes',
'posts_per_page' => 1
);

$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

endwhile;

endif;

wp_reset_query(); // Remember to reset



Posted in S.E.F
via StackOverflow & StackExchange Atomic Web Robots
This Question have been answered
HERE


This post first appeared on Stack Solved, please read the originial post: here

Share the post

SOLVED: Get featured products in Woocommerce 3

×

Subscribe to Stack Solved

Get updates delivered right to your inbox!

Thank you for your subscription

×