我正在尝试将 wordpress 默认语言从英语更改为瑞典语。我使用瑞典语 .mo 文件将语言目录上传到 wp-content。
我已经在 config.php 文件中定义了语言,但它不会更新,当我登录并在更新下我可以看到一个选项说用瑞典语恢复核心文件,所以我知道它只有在我更新时才能工作它仍然是英语。
任何帮助深表感谢。
检查以下链接,它们完全处理您描述的情况(并提出相同的简单解决方法):
http://devblog.fishol.pl/php/wordpress/how-to-restore-default-wordpress-language/
http://wordpress.org/support/topic/change-language-to-english-after-dutch-installation
希望能帮助到你。
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.
更改语言使用
add_filter('locale', 'setLocale22323');
function setLocale22323($locale) {
if ( is_admin() ) {
return 'en_US';
}
return $locale;
}