WC_Shipping_Rate::get_shipping_tax()
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() WC Shipping Rate::get shipping tax code WC 9.4.2
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 ); }