wp_shrink_dimensions()
Deprecated since 3.0.0. It is no longer supported and may be removed in future releases. Use wp_constrain_dimensions() instead.
Calculates the new dimensions for a downsampled image.
No Hooks.
Returns
Array. Shrunk dimensions (width, height).
Usage
wp_shrink_dimensions( $width, $height, $wmax, $hmax );
- $width(int) (required)
- Current width of the image.
- $height(int) (required)
- Current height of the image.
- $wmax(int)
- Maximum wanted width.
Default:128 - $hmax(int)
- Maximum wanted height.
Default:96
Notes
Changelog
| Since 2.0.0 | Introduced. |
| Deprecated since 3.0.0 | Use wp_constrain_dimensions() |
wp_shrink_dimensions() wp shrink dimensions code WP 7.0
function wp_shrink_dimensions( $width, $height, $wmax = 128, $hmax = 96 ) {
_deprecated_function( __FUNCTION__, '3.0.0', 'wp_constrain_dimensions()' );
return wp_constrain_dimensions( $width, $height, $wmax, $hmax );
}