wc_get_shipping_zone()
Get the shipping zone matching a given package from the cart.
Хуков нет.
Возвращает
WC_Shipping_Zone
.
Использование
wc_get_shipping_zone( $package );
- $package(массив) (обязательный)
- Shipping package.
Список изменений
С версии 2.6.0 | Введена. |
Код wc_get_shipping_zone() wc get shipping zone WC 9.2.3
function wc_get_shipping_zone( $package ) { return WC_Shipping_Zones::get_zone_matching_package( $package ); }