- 状态
- 已解决
- 相关插件/主题
- The Events Calendar PRO
问题概述
当翻译由 The Events Calendar 插件存储在 wp_options 表(管理文本)中的文本时,前端会显示原始语言版本。

临时解决方法
可以通过将以下代码添加到您主题的functions.php文件中来修复此翻译:
add_filter('tribe_get_single_option', 'tribe_options_multilingual', 20, 3);
function tribe_options_multilingual( $option, $default, $option_name ) {
if (is_string($option)) {
return apply_filters( 'wpml_translate_single_string', $option, 'admin_texts_tribe_events_calendar_options', '[tribe_events_calendar_options]' . $option_name);
} else {
return $option;
}
}