diff --git a/wp-includes/media.php b/wp-includes/media.php index 19c6ffa38a..c8bb9167f6 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -822,8 +822,8 @@ function wp_get_attachment_image($attachment_id, $size = 'thumbnail', $icon = fa * @since 4.4.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 to retrieve. 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 string|false Attachment URL or false if no image is available. */ diff --git a/wp-includes/version.php b/wp-includes/version.php index d92d31bd98..697986e799 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35043'; +$wp_version = '4.4-alpha-35044'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.