Docs: Adjust documentation for the `$size` parameter in the `wp_get_attachment_image_attributes` hook doc to clarify the required order of width and height values when an array is passed.

See #34257.

Built from https://develop.svn.wordpress.org/trunk@35043


git-svn-id: http://core.svn.wordpress.org/trunk@35008 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-10-12 15:38:24 +00:00
parent 5631df0151
commit 987fe676a9
2 changed files with 3 additions and 2 deletions

View File

@ -801,7 +801,8 @@ function wp_get_attachment_image($attachment_id, $size = 'thumbnail', $icon = fa
* *
* @param array $attr Attributes for the image markup. * @param array $attr Attributes for the image markup.
* @param WP_Post $attachment Image attachment post. * @param WP_Post $attachment Image attachment post.
* @param string|array $size Requested size. * @param string|array $size Requested size. Image size or array of width and height values
* (in that order). Default 'thumbnail'.
*/ */
$attr = apply_filters( 'wp_get_attachment_image_attributes', $attr, $attachment, $size ); $attr = apply_filters( 'wp_get_attachment_image_attributes', $attr, $attachment, $size );
$attr = array_map( 'esc_attr', $attr ); $attr = array_map( 'esc_attr', $attr );

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.4-alpha-35042'; $wp_version = '4.4-alpha-35043';
/** /**
* 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.