wordpress / latest / hooks / wp_image_resize_identical_dimensions.html

apply_filters( 'wp_image_resize_identical_dimensions', bool $proceed, int $orig_w, int $orig_h )

Filters whether to proceed with making an image sub-size with identical dimensions with the original/source image. Differences of 1px may be due to rounding and are ignored.

Parameters

$proceed bool
The filtered value.
$orig_w int
Original image width.
$orig_h int
Original image height.

Source

File: wp-includes/media.php. View all references

$proceed = (bool) apply_filters( 'wp_image_resize_identical_dimensions', false, $orig_w, $orig_h );

Changelog

Version Description
5.3.0 Introduced.

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/wp_image_resize_identical_dimensions