Docs: Adjust the order of 'width' and 'height' (for consistency) for the `$crop` parameter documentation in `image_resize_dimensions()`.
Also similarly adjusts the `$crop` parameter description in the corresponding `image_resize_dimensions` hook doc. Props jaspermdegroot. See #34257. Built from https://develop.svn.wordpress.org/trunk@35053 git-svn-id: http://core.svn.wordpress.org/trunk@35018 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e0529ebdb5
commit
8b26e5debc
|
@ -455,7 +455,7 @@ function wp_constrain_dimensions( $current_width, $current_height, $max_width =
|
||||||
* @param int $orig_h Original height in pixels.
|
* @param int $orig_h Original height in pixels.
|
||||||
* @param int $dest_w New width in pixels.
|
* @param int $dest_w New width in pixels.
|
||||||
* @param int $dest_h New height in pixels.
|
* @param int $dest_h New height in pixels.
|
||||||
* @param bool|array $crop Optional. Whether to crop image to specified height and width or resize.
|
* @param bool|array $crop Optional. Whether to crop image to specified width and height or resize.
|
||||||
* An array can specify positioning of the crop area. Default false.
|
* An array can specify positioning of the crop area. Default false.
|
||||||
* @return false|array False on failure. Returned array matches parameters for `imagecopyresampled()`.
|
* @return false|array False on failure. Returned array matches parameters for `imagecopyresampled()`.
|
||||||
*/
|
*/
|
||||||
|
@ -480,7 +480,7 @@ function image_resize_dimensions($orig_w, $orig_h, $dest_w, $dest_h, $crop = fal
|
||||||
* @param int $orig_h Original height in pixels.
|
* @param int $orig_h Original height in pixels.
|
||||||
* @param int $dest_w New width in pixels.
|
* @param int $dest_w New width in pixels.
|
||||||
* @param int $dest_h New height in pixels.
|
* @param int $dest_h New height in pixels.
|
||||||
* @param bool|array $crop Whether to crop image to specified height and width or resize.
|
* @param bool|array $crop Whether to crop image to specified width and height or resize.
|
||||||
* An array can specify positioning of the crop area. Default false.
|
* An array can specify positioning of the crop area. Default false.
|
||||||
*/
|
*/
|
||||||
$output = apply_filters( 'image_resize_dimensions', null, $orig_w, $orig_h, $dest_w, $dest_h, $crop );
|
$output = apply_filters( 'image_resize_dimensions', null, $orig_w, $orig_h, $dest_w, $dest_h, $crop );
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-35052';
|
$wp_version = '4.4-alpha-35053';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue