apply_filters( 'image_editor_save_pre', WP_Image_Editor $image, int $attachment_id )
- Since
- 3.5.0
Filters the WP_Image_Editor instance for the image to be streamed to the browser.
Compatibility
- WordPress
- since 3.5.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$imageWP_Image_Editor- The image editor instance.
$attachment_idint- The attachment post ID.
Where this hook fires · 2
wp-admin/includes/image-edit.php:355wp_stream_image()wp-admin/includes/image-edit.php:434wp_save_image_file()
Source code
* * @since 3.5.0 * * @param WP_Image_Editor $image The image editor instance. * @param int $attachment_id The attachment post ID. */ $image = apply_filters( 'image_editor_save_pre', $image, $attachment_id ); if ( is_wp_error( $image->stream( $mime_type ) ) ) { return false; } return true;Changelog
Introduced in 3.5.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.9.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.