diff --git a/wp-includes/media.php b/wp-includes/media.php
index ec50703b33..a8bf034f49 100644
a
|
b
|
function image_downsize( $id, $size = 'medium' ) { |
266 | 266 | * @global array $_wp_additional_image_sizes Associative array of additional image sizes. |
267 | 267 | * |
268 | 268 | * @param string $name Image size identifier. |
269 | | * @param int $width Image width in pixels. |
270 | | * @param int $height Image height in pixels. |
| 269 | * @param int $width Optional. Image width in pixels. Default 0. |
| 270 | * @param int $height Optional. Image height in pixels. Default 0. |
271 | 271 | * @param bool|array $crop Optional. Whether to crop images to specified width and height or resize. |
272 | 272 | * An array can specify positioning of the crop area. Default false. |
273 | 273 | */ |