Filters the $orientation value to correct it before rotating or to prevent rotating the image.
$orientationint$filestringwp-includes/class-wp-image-editor.php:500WP_Image_Editor::maybe_exif_rotate() * * @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 ) {Introduced in 5.3.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.