php Woocommerce重新订购国家/地区列表(例如,将英国和美国排在最前面)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Woocommerce重新订购国家/地区列表(例如,将英国和美国排在最前面)相关的知识,希望对你有一定的参考价值。

<?php
/*
 * Woocommerce Push UK & USA to the top of the country list
*/
add_filter('woocommerce_sort_countries', '__return_false');
add_filter( 'woocommerce_countries', 'change_country_order_in_checkout_form' );
function change_country_order_in_checkout_form($countries)
{
    
    $uk = $countries['GB']; // Store the data for "UK key
    unset($countries["GB"]); // Remove "UK entry from the array
    
    $usa = $countries['US']; // Store the data for "US" key
    unset($countries["US"]); // Remove "US" entry from the array
    

    // Return "UK then US" first in the countries array
    return array('GB' => $uk, 'US' => $usa ) + $countries;
}

以上是关于php Woocommerce重新订购国家/地区列表(例如,将英国和美国排在最前面)的主要内容,如果未能解决你的问题,请参考以下文章

php WooCommerce订单电子邮件结算国家/地区

php WooCommerce订单电子邮件结算国家/地区

php [WooCommerce Core]根据送货国家/地区添加附加费

php [WooCommerce Core]根据送货国家/地区添加附加费

php [WooCommerce Core]根据送货国家/地区添加附加费

php [WooCommerce Core]更改结帐时的默认状态和国家/地区