WC_Tax::get_rates()public staticWC 1.0

Get's an array of matching rates for a tax class.

Method of the class: WC_Tax{}

No Hooks.

Return

Array.

Usage

$result = WC_Tax::get_rates( $tax_class, $customer );
$tax_class(string)
Tax class to get rates for.
Default: ''
$customer(object)
Override the customer object to get their location.
Default: null

WC_Tax::get_rates() code WC 8.7.0

public static function get_rates( $tax_class = '', $customer = null ) {
	$tax_class = sanitize_title( $tax_class );
	$location  = self::get_tax_location( $tax_class, $customer );
	return self::get_rates_from_location( $tax_class, $location, $customer );
}