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.
Return Return
(array)
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; }