【发布时间】:2020-04-08 03:04:07
【问题描述】:
我想在新订单电子邮件模板中添加特色产品以进行追加销售(或近期产品或畅销产品)。它与电子邮件营销的追加销售一样。如何将其添加到 woocommerce 电子邮件模板中,以便电子邮件末尾有一个部分显示我的特色/最近/最畅销产品。我尝试在我的新订单电子邮件模板中使用此代码,但没有任何效果。我使用所有最新版本的 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
【问题讨论】:
标签: php wordpress woocommerce product