- 状态
- 等待作者
- 相关插件/主题
- Divi Image Helper
- 主题标签
- Compatibility
问题概述
当将 Divi Theme Builder 与 Divi Image Helper 插件一起使用时,无法使用 WPML 的翻译编辑器显示或翻译图片说明。
临时解决方法
请在继续操作之前,确保已对您的站点进行了完整站点备份。
- 打开 …/wp-content/plugins/divi-image-helper/inc/classes/class-wp-image-module.php 文件。
- 查找该行。
- 替换:
if (0 !== $attachment_id) { $post_obj = get_post($attachment_id);
- 替换为:
if (0 !== $attachment_id) { // WPML Workaround for compsupp-7841 if ( class_exists('Sitepress') ) { $attachment_id = apply_filters( 'wpml_object_id', $attachment_id, 'attachment', TRUE ); } $post_obj = get_post($attachment_id);