gpt4 book ai didi

php - 从优惠券代码 WooCommerce 中检索优惠券详细信息

转载 作者:行者123 更新时间:2023-12-02 05:27:43 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Set a coupon description in WooCommerce

(1 个回答)



Get coupon data from WooCommerce orders

(2 个回答)


3年前关闭。




我之前问过 this question但是它没有回答如何从 WooCommerce 中的优惠券中检索数据的问题。这两个问题都涉及优惠券,但是,first question正在询问如何设置元数据,这个问题询问您如何检索数据。

我试图通过优惠券代码从 WooCommerce 获取优惠券的详细信息。但是,我不确定我应该如何尝试这样做。

我试过下面的代码。但是,它给了我错误 Call to undefined function WC_Coupon()

$coupon_code = 'save10percent';
global $woocommerce;
$c = WC_Coupon($coupon_code);

应该如何获取优惠券的详细信息?

最佳答案

我想到了。为了WC_Coupon函数工作,我需要在调用函数之前添加“new”关键字。如下所示。

$coupon_code = 'save10percent';
global $woocommerce;
$c = new WC_Coupon($coupon_code);

现在我可以像这样获得有关优惠券的详细信息
echo "Discount Amount ".$c->amount."<br>";//Get Discount amount
echo "Discount Type ".$c->discount_type."<br>";//Get type of discount
echo "Individual Use ".$c->individual_use."<br>";//Get individual use status
echo "Usage Count ".$c->usage_count."<br>";//Get number of times the coupon has been used
echo "Uage Limit ".$c->usage_limit."<br>";//Get usage limit
echo "Coupon Description ".$c->description."<br>";//Get coupon description

关于php - 从优惠券代码 WooCommerce 中检索优惠券详细信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47517058/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com