Skip to content

Instantly share code, notes, and snippets.

@neltseng
Last active July 7, 2017 04:11
Show Gist options
  • Save neltseng/db4dfb5ea1415ec44d90ede7ed9867cc to your computer and use it in GitHub Desktop.
Save neltseng/db4dfb5ea1415ec44d90ede7ed9867cc to your computer and use it in GitHub Desktop.
WooCommerce v3.0 - 覆蓋運送方式 1 的翻譯
<?php
/*
Plugin Name: Change Shipping Package Name
Plugin URI: https://cloudwp.pro/
Description: 覆蓋運送方式 1 的翻譯
Author: Nel Tseng
Version: 0.1
Author URI: https://cloudwp.pro/
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
add_filter( 'woocommerce_shipping_package_name', 'cw_shipping_package_name' );
function cw_shipping_package_name() {
return __( '運送方式' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment