Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

WC_Tax::sort_rates( array $rates )

Logical sort order for tax rates based on the following in order of priority.


Description Description


Parameters Parameters

$rates

(Required) Rates to be sorted.


Top ↑

Return Return

(array)


Top ↑

Source Source

File: includes/class-wc-tax.php

	private static function sort_rates( $rates ) {
		uasort( $rates, __CLASS__ . '::sort_rates_callback' );
		$i = 0;
		foreach ( $rates as $key => $rate ) {
			$rates[ $key ]->tax_rate_order = $i++;
		}
		return $rates;
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.