From 8f3f5dba35fc156b96c6ec2007ca3f4c55484a50 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 12 Oct 2015 15:31:24 +0000 Subject: [PATCH] Docs: Adjust documentation for the `$size` parameter in `wp_get_attachment_image_src()` to clarify the required order of width and height values when passing an array. See #34257. Built from https://develop.svn.wordpress.org/trunk@35040 git-svn-id: http://core.svn.wordpress.org/trunk@35005 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/media.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/media.php b/wp-includes/media.php index 71505aee0f..7e7afc029a 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -707,8 +707,8 @@ function get_intermediate_image_sizes() { * @since 2.5.0 * * @param int $attachment_id Image attachment ID. - * @param string|array $size Optional. Registered image size to retrieve the source for or a flat - * array of height and width dimensions. Default 'thumbnail'. + * @param string|array $size Optional. Image size. Accepts any valid image size, or an array of width + * and height values in pixels (in that order). Default 'thumbnail'. * @param bool $icon Optional. Whether the image should be treated as an icon. Default false. * @return false|array Returns an array (url, width, height, is_intermediate), or false, if no image is available. */ diff --git a/wp-includes/version.php b/wp-includes/version.php index feead7ede7..f8defa0a2e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35039'; +$wp_version = '4.4-alpha-35040'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.