我想在我的单词印刷主题中添加2种语言,我已经准备好已翻译的 .PO
文件,但主题仅使用其中一种,默认的一种。我尝试将所需的语言文件从 ar_EG.po
重命名为 en_US.po
,这是我的默认语言文件并替换它以便我可以更改我的网站语言,它工作,但无论如何我无法找到使我的网站支持2种语言,人们可以使用word语言插件切换。
答案 0 :(得分:-1)
尝试将此添加到functions.php
中的your_theme_setup函数中load_theme_textdomain( 'your_theme_name', get_template_directory() . '/languages' );
$locale = get_locale();
$locale_file = get_template_directory() . "/languages/$locale.php";
if ( is_readable( $locale_file ) ) {
require_once( $locale_file );
}