function multi_change_translate_text( $translated ) { $text = array( 'Woocommerce' => '商城', ); $translated = str_ireplace( array_keys( $text ), $text, $translated ); return $translated; } add_filter( 'gettext', 'multi_change_translate_text', 20 );