WC_Coupon::get_individual_use
Get the "individual use" checkbox status.
Method of the class: WC_Coupon{}
No Hooks.
Returns
true|false.
Usage
$WC_Coupon = new WC_Coupon(); $WC_Coupon->get_individual_use( $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_individual_use() WC Coupon::get individual use code WC 10.5.0
public function get_individual_use( $context = 'view' ) {
return $this->get_prop( 'individual_use', $context );
}