diff --git a/src/wp-includes/media.php b/src/wp-includes/media.php
index 1981f3ad9a..3e76d1c187 100644
|
a
|
b
|
function image_downsize( $id, $size = 'medium' ) { |
| 271 | 271 | * @param string $name Image size identifier. |
| 272 | 272 | * @param int $width Image width in pixels. |
| 273 | 273 | * @param int $height Image height in pixels. |
| 274 | | * @param bool|array $crop Optional. Whether to crop images to specified width and height or resize. |
| 275 | | * An array can specify positioning of the crop area. Default false. |
| | 274 | * @param bool|array $crop Optional. If true, images will be crop without any adjustments |
| | 275 | * in dimensions. Otherwise we should try to adjust images dimensions |
| | 276 | * according specified width and height parameters before we crop it. |
| 276 | 277 | */ |
| | 278 | |
| 277 | 279 | function add_image_size( $name, $width = 0, $height = 0, $crop = false ) { |
| 278 | 280 | global $_wp_additional_image_sizes; |
| 279 | 281 | |