WC_Tax::calc_shipping_tax()
Calculate the shipping tax using a passed array of rates.
Method of the class: WC_Tax{}
Hooks from the method
Return
Array
.
Usage
$result = WC_Tax::calc_shipping_tax( $price, $rates );
- $price(float) (required)
- Shipping cost.
- $rates(array) (required)
- Taxation Rate.
WC_Tax::calc_shipping_tax() WC Tax::calc shipping tax code WC 9.3.3
public static function calc_shipping_tax( $price, $rates ) { $taxes = self::calc_exclusive_tax( $price, $rates ); return apply_filters( 'woocommerce_calc_shipping_tax', $taxes, $price, $rates ); }