如何在WordPress的国家选择下拉列表中首先显示印度国家

时间:2018-06-05 作者:jaydeep dhokai

如何在WordPress中显示India country first in country selection下拉列表

enter image description here

1 个回复
SO网友:dhirenpatel22

您可以在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
}
请让我知道代码是否有效。

结束

相关推荐