mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
https://stackoverflow.com/questions/66466415/set-woocommerce-user-billing-and-shipping-country-programmatically/66466808
8 lines
235 B
Text
8 lines
235 B
Text
$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();
|