wp_show_heic_upload_error

函数
wp_show_heic_upload_error ( $plupload_settings )
参数
  • (array[]) $plupload_settings The settings for Plupload.js.
    Required:
返回值
  • (array[]) Modified settings for Plupload.js.
定义位置
相关方法
wp_media_upload_handlerwp_get_upload_dirwp_import_upload_formwp_auth_check_loadwp_kses_html_error
引入
5.5.0
弃用
-

wp_show_heic_upload_error是一个函数,用于显示HEIC格式的图片上传失败的错误信息。

回调用于在上传.heic图像时显示用户错误。

function wp_show_heic_upload_error( $plupload_settings ) {
	$plupload_settings['heic_upload_error'] = true;
	return $plupload_settings;
}

常见问题

FAQs
查看更多 >