WC_Cart::set_shipping_tax()
Set shipping_tax.
{} It's a method of the class: WC_Cart{}
No Hooks.
Return
null
. Nothing.
Usage
$WC_Cart = new WC_Cart(); $WC_Cart->set_shipping_tax( $value );
- $value(string) (required)
- Value to set.
Changelog
Since 3.2.0 | Introduced. |
Code of WC_Cart::set_shipping_tax() WC Cart::set shipping tax WC 6.7.0
public function set_shipping_tax( $value ) { $this->totals['shipping_tax'] = $value; }