- 状态
- 已由作者解决
- 解决于
- Themify Ultra 8.0.1
- 相关插件/主题
- Themify Ultra
- 主题标签
- Compatibility
问题概述
在使用 WPML 翻译带有 Themify Ultra 主题中 Feature Content 模块的页面时,图片的 ALT 文本在前端未翻译。
临时解决方法
在继续操作之前,请确保对站点进行了完整备份。
- 打开 …/wp-content/themes/themify-ultra/themify/themify-builder/classes/class-themify-builder-model.php 文件。
- 找到第 357 行。
- 将:
public static function get_alt_by_url(string $image_url):string { $attachment_id = themify_get_attachment_id_from_url($image_url); if ($attachment_id && ($alt = get_post_meta($attachment_id, '_wp_attachment_image_alt', true))) { return $alt; } return ''; } - 替换为:
public static function get_alt_by_url(string $image_url):string { $attachment_id = themify_get_attachment_id_from_url($image_url); // WPML Workaround for wpmlsupp-12600 if ( class_exists('Sitepress') ) { $current_lang = apply_filters( 'wpml_current_language', NULL ); $attachment_id = apply_filters( 'wpml_object_id', $attachment_id, 'post', TRUE, $current_lang ); } if ($attachment_id && ($alt = get_post_meta($attachment_id, '_wp_attachment_image_alt', true))) { return $alt; } return ''; }