需要根据业务自己改,下方代码的意思是《如果当前产品能使用优惠券,则在产品简短描述中添加内容,我代码添加的是短代码》:
//在符合优惠券的产品中输出内容
function apply_coupon_code_block( $post_excerpt ) {
global $product;
if($product and is_singular("product")){
$id = $product->get_id();
$coupon = new WC_Coupon('NEW');
$_product = wc_get_product($id);
if($coupon->is_valid_for_product($_product)){
return do_shortcode("[apply_coupon_code]").'<br>'.$post_excerpt;
}
}
return $post_excerpt;
}
add_filter('woocommerce_short_description', 'apply_coupon_code_block', 10, 1);
© 版权声明
THE END
暂无评论内容