Uses
| Uses | Description |
|---|---|
| wp-includes/functions.php: _deprecated_function() | Mark a function as deprecated and inform when it has been used. |
| wp-includes/media.php: wp_constrain_dimensions() | Calculates the new dimensions for a down-sampled image. |
This function has been deprecated. Use wp_constrain_dimensions() instead.
Calculates the new dimensions for a downsampled image.
(int) (Required) Current width of the image
(int) (Required) Current height of the image
(int) (Optional) Maximum wanted width
Default value: 128
(int) (Optional) Maximum wanted height
Default value: 96
(array) Shrunk dimensions (width, height).
File: wp-admin/includes/deprecated.php
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 );
} | Version | Description |
|---|---|
| 3.0.0 | Use wp_constrain_dimensions() |
| 2.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_shrink_dimensions