WC_Shipping_Rate::get_shipping_tax()publicWC 1.0

Get shipping tax.

Method of the class: WC_Shipping_Rate{}

Hooks from the method

Return

float.

Usage

$WC_Shipping_Rate = new WC_Shipping_Rate();
$WC_Shipping_Rate->get_shipping_tax();

WC_Shipping_Rate::get_shipping_tax() code WC 8.7.0

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