WC_Order_Item_Tax::set_tax_total()
Set tax total.
Method of the class: WC_Order_Item_Tax{}
No Hooks.
Return
null
. Nothing.
Usage
$WC_Order_Item_Tax = new WC_Order_Item_Tax(); $WC_Order_Item_Tax->set_tax_total( $value );
- $value(string) (required)
- Tax total.
WC_Order_Item_Tax::set_tax_total() WC Order Item Tax::set tax total code WC 7.5.0
public function set_tax_total( $value ) { $this->set_prop( 'tax_total', $value ? wc_format_decimal( $value ) : 0 ); }