您可以在functions.php 文件以在签出页下拉列表中选择默认国家/地区。
/**
* Change the default state and country on the checkout page
*/
add_filter( \'default_checkout_billing_country\', \'change_default_checkout_country\' );
function change_default_checkout_country() {
return \'IN\'; // country code
}
请让我知道代码是否有效。