如何在 WooCommerce 中找到任何国家/地区的 states/cities

How to find the states/cities of any country in WooCommerce

我知道按照下面的方法可以在woocommerce中获取国家:

global $woocommerce;
$woocommerce->customer->get_shipping_country()

WC()->customer->get_shipping_country()

但我想知道如何找到任何国家的states/cities。

在 WooCommerce 中,您只能使用以下方式从一个国家/地区获取州(或地区):

$country_code = WC()->customer->get_shipping_country();

$states_array = WC()->countries->get_states( $country_code ); // States array for a country

您可以通过以下方式获取客户发货状态:WC()->customer->get_shipping_state();
您可以通过以下方式获取客户送货城市:WC()->customer->get_shipping_city();.