get_udims()
Deprecated from version 3.5.0. It is no longer supported and can be removed in future releases. Use wp_constrain_dimensions() instead.
Calculated the new dimensions for a downsampled image.
No Hooks.
Return
Array
. Shrunk dimensions (width, height).
Usage
get_udims( $width, $height );
- $width(int) (required)
- Current width of the image
- $height(int) (required)
- Current height of the image
Notes
Changelog
Since 2.0.0 | Introduced. |
Deprecated since 3.5.0 | Use wp_constrain_dimensions() |
get_udims() get udims code WP 6.6.2
function get_udims( $width, $height ) { _deprecated_function( __FUNCTION__, '3.5.0', 'wp_constrain_dimensions()' ); return wp_constrain_dimensions( $width, $height, 128, 96 ); }