apply_filters( 'wp_image_maybe_exif_rotate', int $orientation, string $file )
- Since
- 5.3.0
Filters the
$orientation value to correct it before rotating or to prevent rotating the image.Compatibility
- WordPress
- since 5.3.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
$orientationint- EXIF Orientation value as retrieved from the image file.
$filestring- Path to the image file.
Where this hook fires · 1
wp-includes/class-wp-image-editor.php:505WP_Image_Editor::maybe_exif_rotate()
Source code
* * @since 5.3.0 * * @param int $orientation EXIF Orientation value as retrieved from the image file. * @param string $file Path to the image file. */ $orientation = apply_filters( 'wp_image_maybe_exif_rotate', $orientation, $this->file ); if ( ! $orientation || 1 === $orientation ) { return false; } switch ( $orientation ) {Changelog
Introduced in 5.3.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.