📌  相关文章
📜  wp wc php 更改所有用户的客户发货国家 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:03.325000             🧑  作者: Mango

代码示例1
$country_code = 'US';

// Get the WC_Customer instance object from user ID
$customer = new WC_Customer( $user_id );

$customer->set_billing_country( $country_code );
$customer->set_shipping_country( $country_code );
$customer->save();