wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_show_heic_upload_error › WordPress Function

Since5.5.0
已弃用n/a
wp_show_heic_upload_error ( $plupload_settings )
参数:
  • (array[]) $plupload_settings The settings for Plupload.js.
    Required: Yes
返回:
  • (array[]) Modified settings for Plupload.js.
定义在:
文档:

Callback to enable showing of the user error when uploading .heic images.



源码

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