WC_Order_Item_Tax::set_tax_total( string $value )

Set tax total.


Description Description


Parameters Parameters

$value

(Required) Tax total.


Top ↑

Source Source

File: includes/class-wc-order-item-tax.php

	public function set_tax_total( $value ) {
		$this->set_prop( 'tax_total', $value ? wc_format_decimal( $value ) : 0 );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.