WC_Cart::set_cart_contents_tax()
Set cart tax amount.
Method of the class: WC_Cart{}
No Hooks.
Return
null
. Nothing.
Usage
$WC_Cart = new WC_Cart(); $WC_Cart->set_cart_contents_tax( $value );
- $value(string) (required)
- Value to set.
Changelog
Since 3.2.0 | Introduced. |
WC_Cart::set_cart_contents_tax() WC Cart::set cart contents tax code WC 7.7.0
public function set_cart_contents_tax( $value ) { $this->totals['cart_contents_tax'] = $value; }