WC_Shipping_Rate::get_shipping_tax()

Get shipping tax.


Description Description


Return Return

(array)


Top ↑

Source Source

File: includes/class-wc-shipping-rate.php

	public function get_shipping_tax() {
		return apply_filters( 'woocommerce_get_shipping_tax', count( $this->taxes ) > 0 && ! WC()->customer->get_is_vat_exempt() ? array_sum( $this->taxes ) : 0, $this );
	}


Top ↑

User Contributed Notes User Contributed Notes

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