Docs: Adjust documentation for the $size parameter in next_image_link() to clarify the required order of width and height values when passing an array.

See #34257.

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


git-svn-id: http://core.svn.wordpress.org/trunk@35013 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-10-12 15:50:24 +00:00
parent 141b096f6d
commit 81f67bae13
2 changed files with 5 additions and 4 deletions

View File

@ -2422,11 +2422,12 @@ function previous_image_link( $size = 'thumbnail', $text = false ) {
*
* @see adjacent_image_link()
*
* @param string|array $size Optional. Registered image size or flat array of height and width dimensions.
* 0 or 'none' will default to 'post_title' or `$text`. Default 'thumbnail'.
* @param string|array $size Optional. Image size. Accepts any valid image size, an array of width and
* height values in pixels (in that order), 0, or 'none'. 0 or 'none' will
* default to 'post_title' or `$text`. Default 'thumbnail'.
* @param string $text Optional. Link text. Default false.
*/
function next_image_link($size = 'thumbnail', $text = false) {
function next_image_link( $size = 'thumbnail', $text = false ) {
adjacent_image_link(false, $size, $text);
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-35047';
$wp_version = '4.4-alpha-35048';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.