WC_Coupon::get_limit_usage_to_x_items()publicWC 3.0.0

Usage limited to certain amount of items

Method of the class: WC_Coupon{}

No Hooks.

Return

Int|null.

Usage

$WC_Coupon = new WC_Coupon();
$WC_Coupon->get_limit_usage_to_x_items( $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_limit_usage_to_x_items() code WC 8.7.0

public function get_limit_usage_to_x_items( $context = 'view' ) {
	return $this->get_prop( 'limit_usage_to_x_items', $context );
}