在WordPress中,我使用的是CMB2插件(用于创建metabox和metafield的框架)和WPML Media (WPML附加组件避免为每种语言保存相同的附件,从而创建了翻译:仅该附件的标题,替代,说明和标题);我正在创建一个像file_list
这样的元字段,将附件保存在array (id => url)
中,如下所示:
$cmb = new_cmb2_box( array(
'id' => 'benny_metabox_photo',
'title' => esc_html__( 'My Photo Metabox', 'mydomain' ),
'object_types' => array( 'post' )
) );
$cmb->add_field( array(
'name' => esc_html__( 'My Photo', 'mydomain' ),
'id' => 'benny-file-list',
'type' => 'file_list',
'preview_size' => array( 100, 100 ),
'text' => array(
'add_upload_files_text' => esc_html__( 'Add Photos', 'mydomain' ),
'remove_image_text' => esc_html__( 'Remove Photo', 'mydomain' ),
'file_text' => esc_html__( 'Photo:', 'mydomain' ),
'file_download_text' => esc_html__( 'Download', 'mydomain' ),
'remove_text' => esc_html__( 'Remove', 'mydomain' )
)
) );
因此,当我以WPML中的主要语言创建帖子时,一切都可以正常工作。但是,当我创建翻译并在file_list
字段中插入附件时,id始终引用主要语言的附件而不是其翻译,因此在前端-当您以翻译后的语言显示网站时-标题在file_list
字段中上传的图像的,alt,描述和标题均为主要语言。我该如何查看他们的翻译而不是主要语言?
答案 0 :(得分:0)
我已经看到CMB2提供了创建自定义清理功能的可能性,通过该功能可以在将值插入数据库之前对其进行检查。因此,我通过以下方式在元字段中设置了sanitization_cb
参数:
$cmb->add_field( array(
'name' => esc_html__( 'My Photo', 'mydomain' ),
'id' => 'benny-file-list',
'type' => 'file_list',
'preview_size' => array( 100, 100 ),
'text' => array(
'add_upload_files_text' => esc_html__( 'Add Photos', 'mydomain' ),
'remove_image_text' => esc_html__( 'Remove Photo', 'mydomain' ),
'file_text' => esc_html__( 'Photo:', 'mydomain' ),
'file_download_text' => esc_html__( 'Download', 'mydomain' ),
'remove_text' => esc_html__( 'Remove', 'mydomain' )
),
'sanitization_cb' => 'benny_cmb_sanitize_file_list'
) );
然后,我创建了用于清理的回调函数,以检查上传的附件的语言是否与帖子的语言匹配;如果不匹配,它将查找翻译ID,如果已翻译,则将其替换:
function benny_cmb_sanitize_file_list( $value, $field_args, $field ) {
if ( ! function_exists( 'icl_object_id' ) )
return $value;
if ( empty( $value ) )
return $value;
$main_lang = apply_filters( 'wpml_default_language', NULL );
$post_id = $field->object_id;
$post_lang = apply_filters( 'wpml_post_language_details', NULL, $post_id );
$post_lang = $post_lang[ 'language_code' ];
if ( $post_lang == $main_lang )
return $value;
$photo = $value;
$trad_photo = array();
foreach ( $photo as $id => $url ) {
$photo_lang = apply_filters( 'wpml_post_language_details', NULL, $id );
$photo_lang = $photo_lang[ 'language_code' ];
$post_type = get_post_type( $id );
if ( $photo_lang !== $post_lang ) {
$trad_id = apply_filters( 'wpml_object_id', $id, $post_type, FALSE, $post_lang );
if ( ! empty( $trad_id ) ) {
$trad_photo[ $trad_id ] = $url;
}
}
}
if ( ! empty( $trad_photo ) ) {
return $trad_photo;
}
return $value;
}
现在它很好用,并且在前端,我以正确的语言可视化了图像属性(标题,alt等)。
P.S。我不知道这是正确的方法还是最漂亮的形式,我愿意接受每一个反馈:)