您可以使用以下钩子函数:
add_action( 'woocommerce_admin_order_data_after_shipping_address', 'ordered_origin', 10, 1 );
function ordered_origin( $order ){
$country_code = $order->get_shipping_country();
$wc_countries = WC()->countries;
// Get the shipping coutry code
$shipping_country_name = $wc_countries->countries[$country_code];
echo '<p><strong>'.__('Ordered origin').':</strong> ' . $shipping_country_name . '</p>';
}
代码位于活动子主题(或活动主题)的function.php文件中。经过测试和工作。