From 141b096f6d61e50ec1db606a8619002e945d52c8 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 12 Oct 2015 15:48:25 +0000 Subject: [PATCH] Docs: Adjust documentation for the `$size` parameter in `previous_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@35047 git-svn-id: http://core.svn.wordpress.org/trunk@35012 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/media.php | 5 +++-- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/wp-includes/media.php b/wp-includes/media.php index 79f2ace796..f48028b07c 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -2406,8 +2406,9 @@ add_shortcode( 'video', 'wp_video_shortcode' ); * * @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 previous_image_link( $size = 'thumbnail', $text = false ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index b393951200..5662a1b860 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35046'; +$wp_version = '4.4-alpha-35047'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.