WordPress教程:WooCommerce创建优惠券程序

经过 小朱笔记 | 3 月 17, 2019 | WordPress技巧 | 0条评论

创建优惠券程序

$coupon_code = 'UNIQUECODE'; https:// Code
$amount = '10'; https:// Amount
$discount_type = 'fixed_cart'; https:// Type: fixed_cart, percent, fixed_product, percent_product
 
$coupon = array(
  'post_title' => $coupon_code,
  'post_content' => '',
  'post_status' => 'publish',
  'post_author' => 1,
  'post_type'       => 'shop_coupon'
);
 
$new_coupon_id = wp_insert_post( $coupon );
 
https:// Add meta
update_post_meta( $new_coupon_id, 'discount_type', $discount_type );
update_post_meta( $new_coupon_id, 'coupon_amount', $amount );
update_post_meta( $new_coupon_id, 'individual_use', 'no' );
update_post_meta( $new_coupon_id, 'product_ids', '' );
update_post_meta( $new_coupon_id, 'exclude_product_ids', '' );
update_post_meta( $new_coupon_id, 'usage_limit', '' );
update_post_meta( $new_coupon_id, 'expiry_date', '' );
update_post_meta( $new_coupon_id, 'apply_before_tax', 'yes' );
update_post_meta( $new_coupon_id, 'free_shipping', 'no' );

在哪里添加此代码?

将PHP代码放在主题或子主题functions.php文件的底部。

0条评论

提交评论

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理