wp_show_heic_upload_error

The timeline below displays how wordpress function wp_show_heic_upload_error has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 5.5

/**
 * Callback to enable showing of the user error when uploading .heic images.
 *
 * @since 5.5.0
 *
 * @param array[] $plupload_settings The settings for Plupload.js.
 * @return array[] Modified settings for Plupload.js.
 */
function wp_show_heic_upload_error($plupload_settings)
{
    $plupload_settings['heic_upload_error'] = true;
    return $plupload_settings;
}