1
我已經包括以下功能到子主題的function.php文件,以從子主題的語言目錄加載翻譯文件:WordPress的load_child_theme_textdomain() - 移動翻譯文件兒童的主題目錄
add_action('after_setup_theme', 'generatepress_child_setup');
function generatepress_child_setup() {
load_child_theme_textdomain('generatepress-child', get_stylesheet_directory() . '/languages');
}
但是,翻譯文件只能從父主題加載,而不能從孩子加載。可能是什麼原因?我將文件bg_BG.mo和bg_BG.po放入子主題的語言文件夾中。