WC_Tax::find_shipping_rates
Searches for all matching country/state/postcode tax rates.
Method of the class: WC_Tax{}
No Hooks.
Returns
Array.
Usage
$result = WC_Tax::find_shipping_rates( $args );
- $args(array)
- Args that determine the rate to find.
Default:array()
WC_Tax::find_shipping_rates() WC Tax::find shipping rates code WC 10.6.2
public static function find_shipping_rates( $args = array() ) {
$rates = self::find_rates( $args );
$shipping_rates = array();
if ( is_array( $rates ) ) {
foreach ( $rates as $key => $rate ) {
if ( 'yes' === $rate['shipping'] ) {
$shipping_rates[ $key ] = $rate;
}
}
}
return $shipping_rates;
}