WC_Cart::set_discount_tax()publicWC 3.2.0

Set discount_tax.

Method of the class: WC_Cart{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Cart = new WC_Cart();
$WC_Cart->set_discount_tax( $value );
$value(string) (required)
Value to set.

Changelog

Since 3.2.0 Introduced.

WC_Cart::set_discount_tax() code WC 8.7.0

public function set_discount_tax( $value ) {
	$this->totals['discount_tax'] = $value;
}