WC_Coupon::get_usage_limit_per_user()
Get coupon usage limit per customer (for a single customer)
Method of the class: WC_Coupon{}
No Hooks.
Return
Int
.
Usage
$WC_Coupon = new WC_Coupon(); $WC_Coupon->get_usage_limit_per_user( $context );
- $context(string)
- What the value is for. Valid values are 'view' and 'edit'.
Default: 'view'
Changelog
Since 3.0.0 | Introduced. |
WC_Coupon::get_usage_limit_per_user() WC Coupon::get usage limit per user code WC 9.4.2
public function get_usage_limit_per_user( $context = 'view' ) { return $this->get_prop( 'usage_limit_per_user', $context ); }