Reputation: 195
Does anyone know how to get the shipping zone from woocommerce? I think this comes from the table rate shipping extension but has now been added to WC core.
I'm guessing it's similar to
WC()->customer->get_shipping_country();
Thanks!
Upvotes: 3
Views: 10392
Reputation: 6328
You can easily get the shipping zones by following given code
$delivery_zones = WC_Shipping_Zones::get_zones();
foreach ((array) $delivery_zones as $key => $the_zone ) {
echo $the_zone['zone_name'];
}
It will return the zone information for each zone.
Upvotes: 11