WC_Abstract_Order::get_total_tax( string $context = 'view' )

Get total tax amount. Alias for get_order_tax().


Description Description


Parameters Parameters

$context

(Optional) View or edit context.

Default value: 'view'


Top ↑

Return Return

(float)


Top ↑

Source Source

File: includes/abstracts/abstract-wc-order.php

	public function get_total_tax( $context = 'view' ) {
		return $this->get_prop( 'total_tax', $context );
	}


Top ↑

User Contributed Notes User Contributed Notes

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