让我们说,我们有很多很多关系的两种模式,优惠券和产品。
class Coupon extends \Eloquent {
protected $table = 'coupons';
public function products()
{
return $this->belongsToMany('Product');
}
}
和
class Product extends \Eloquent {
protected $table = 'products';
public fun
我有优惠券“优惠券-测试”
我有这个片段来显示优惠券的使用数量。
function simple_function_1() {
$coupon_code = 'coupon-test';
global $woocommerce;
$coupon_data = new WC_Coupon($coupon_code);
echo ($coupon_data->usage_count);// return number of remaining coupons
}
add_shortcode( 'own_shortcode1