WC_Order_Item_Tax::set_shipping_tax_total( string $value )

Set shipping tax total.


Description Description


Parameters Parameters

$value

(Required) Shipping tax total.


Top ↑

Source Source

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

	public function set_shipping_tax_total( $value ) {
		$this->set_prop( 'shipping_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.