限制运输的国家列表
/**
 * WooCommerce Extra Feature
 * --------------------------
 *
 * Restrict shipping countries list
 *
 */
function woo_override_checkout_fields( $fields ) { 
 
  $fields['shipping']['shipping_country'] = array(
    'type'      => 'select',
    'label'     => __('My New Country List', 'woocommerce'),
    'options'   => array('AU' => 'Australia')
  );
 
  return $fields; 
} 
add_filter( 'woocommerce_checkout_fields' , 'woo_override_checkout_fields' );
在哪里添加此代码?
将PHP代码放在主题或子主题functions.php文件的底部。
 
			