wp_image_maybe_exif_rotate

wp_image_maybe_exif_rotate

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_image_maybe_exif_rotate') is found 1 times:

  • /wp-includes/class-wp-image-editor.php line 500
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    *
     * @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 ) {