首页 > 网站 > 帮助中心 > 正文

让WordPress 前台英文 后台中文的方法

2019-09-08 23:51:04
字体:
来源:转载
供稿:网友
  【黑.客.武.林】导读:lls: show; border-collapse: collapse; line-height: normal; width: 600px; table-layout: fixed; margin-left: 1px; ">
 
 
  正文:

 

用 Admin in English 插件: http://wordpress.org/extend/plugins/admin-in-english/
它是不管前台是什, 後台英文.
你可改倒, 前台英文, 後台中文.

<?php
function admin_in_english_locale( $locale ) {
        if ( is_admin() || false !== strpos($_SERVER['REQUEST_URI'], '/wp-includes/js/tinymce/tiny_mce_config.php') ) {
                return 'en_US'; //此改zh_CN
        }
        return $locale;
}
add_filter( 'locale', 'admin_in_english_locale' );

?>


在 wp-config.php
define ('WPLANG', 'zh_CN'); //此改en_US
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表