我正在尝试将荷兰语翻译添加到Wordpress主题中。 我用POedit编辑了.pot文件(在主题内),并保存了nl_NL .po和.mo(没有任何问题)。
当然,我已经在我的孩子主题(称为charityhub-child)中制作了语言目录。
我已经以最基本的形式更改了我的代码(取自Wordpress代码参考)。
我的functions.php看起来像这样:
function wpdocs_child_theme_setup() {
load_child_theme_textdomain( 'charityhub', get_stylesheet_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'wpdocs_child_theme_setup' );
父主题名称= charityhub。
这里似乎有什么问题?语言文件未加载...