wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_show_heic_upload_error › WordPress Function

Seit5.5.0
Veraltetn/v
wp_show_heic_upload_error ( $plupload_settings )
Parameter:
  • (array[]) $plupload_settings The settings for Plupload.js.
    Erforderlich: Ja
Gibt zurück:
  • (array[]) Modified settings for Plupload.js.
Definiert in:
Codex:
Changelog:
  • 6.7.0

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



Quellcode

function wp_show_heic_upload_error( $plupload_settings ) {
	// Check if HEIC images can be edited.
	if ( ! wp_image_editor_supports( array( 'mime_type' => 'image/heic' ) ) ) {
		$plupload_init['heic_upload_error'] = true;
	}
	return $plupload_settings;
}