WC_Abstract_Order::get_tax_rates()
Get tax rates for an order. Use order's shipping or billing address, defaults to base location.
Method of the class: WC_Abstract_Order{}
No Hooks.
Return
Mixed|null
. Tax rates.
Usage
// protected - for code of main (parent) or child class $result = $this->get_tax_rates( $tax_class, $location_args, $customer );
- $tax_class(string) (required)
- Tax class to get rates for.
- $location_args(array)
- Location to compute rates for. Should be in form: array( country, state, postcode, city).
Default: array() - $customer(object)
- Only used to maintain backward compatibility for filter woocommerce-matched_rates.
Default: null
WC_Abstract_Order::get_tax_rates() WC Abstract Order::get tax rates code WC 9.7.1
protected function get_tax_rates( $tax_class, $location_args = array(), $customer = null ) { $tax_location = $this->get_tax_location( $location_args ); $tax_location = array( $tax_location['country'], $tax_location['state'], $tax_location['postcode'], $tax_location['city'] ); return WC_Tax::get_rates_from_location( $tax_class, $tax_location, $customer ); }