Last active
July 7, 2017 04:11
-
-
Save neltseng/db4dfb5ea1415ec44d90ede7ed9867cc to your computer and use it in GitHub Desktop.
WooCommerce v3.0 - 覆蓋運送方式 1 的翻譯
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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