这将需要一个插件,只需将以下内容放入一个文件中(login-languge.php
) 在里面wp-content/plugins/
/*
Plugin Name: Log-in Language
Plugin URI: http://wordpress.stackexchange.com/questions/72692/how-do-i-change-the-language-of-only-the-login-page
Description: Changes the language for log-in/register screens only
Author: Stephen Harris
Author URI: http://stephenharris.info
Version: 1.0
License: GNU GPL 2
*/
add_action(\'plugins_loaded\', \'wpse72696_login_language_init\');
function wpse72696_login_language_init(){
if( in_array( $GLOBALS[\'pagenow\'], array( \'wp-login.php\', \'wp-register.php\' ) ) ){
add_filter(\'locale\', \'wpse72692_login_language\',10);
}
}
function wpse72692_login_language( $locale ){
return \'en_US\';
}