WC_Coupon::set_excluded_product_categories()publicWC 3.0.0

Set the product category IDs this coupon cannot be used with.

Method of the class: WC_Coupon{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Coupon = new WC_Coupon();
$WC_Coupon->set_excluded_product_categories( $excluded_product_categories );
$excluded_product_categories(array) (required)
List of excluded product categories.

Changelog

Since 3.0.0 Introduced.

WC_Coupon::set_excluded_product_categories() code WC 8.7.0

public function set_excluded_product_categories( $excluded_product_categories ) {
	$this->set_prop( 'excluded_product_categories', array_filter( wp_parse_id_list( (array) $excluded_product_categories ) ) );
}