我正在尝试将wordpress默认语言从英语更改为瑞典语。我使用瑞典语.mo文件将语言目录上传到wp-content。
我已经在config.php文件中定义了语言但它不会更新,当我登录并且在更新时我可以看到一个选项,说明用瑞典语恢复核心文件所以我知道它只在我更新时工作仍然是英语。
非常感谢任何帮助。
答案 0 :(得分:1)
检查以下链接,它们完全处理您描述的情况(并提出相同类型的简单解决方法):
http://devblog.fishol.pl/php/wordpress/how-to-restore-default-wordpress-language/
http://wordpress.org/support/topic/change-language-to-english-after-dutch-installation
希望它有所帮助。
答案 1 :(得分:0)
In order to change the language in wordpress blog you need to perform these steps:
1) Login into WordPress Blog Administrator Control Panel.
2) Click on Settings.
3) Click on General Settings.
4) Select the desired Language from the drop down menu at Language section.
5) Click on save changes.
答案 2 :(得分:0)
更改语言使用
add_filter('locale', 'setLocale22323');
function setLocale22323($locale) {
if ( is_admin() ) {
return 'en_US';
}
return $locale;
}