gpt4 book ai didi

php - 如何在 WooCommerce 中查找任何国家/地区的州/市

转载 作者:行者123 更新时间:2023-12-04 07:47:48 24 4
gpt4 key购买 nike

我知道根据下面的方法我可以在woocommerce中获得国家:

global $woocommerce;
$woocommerce->customer->get_shipping_country()
或者
WC()->customer->get_shipping_country()
但我想知道如何找到任何国家的州/城市。

最佳答案

在 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(); .

关于php - 如何在 WooCommerce 中查找任何国家/地区的州/市,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67135681/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com