From e1d1e7a4afe45feeb7aeb3ab96e784dceaf12ac9 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 12 Oct 2015 15:49:52 +0000 Subject: [PATCH] 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. git-svn-id: https://develop.svn.wordpress.org/trunk@35048 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/media.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/media.php b/src/wp-includes/media.php index f48028b07c..0c27267991 100644 --- a/src/wp-includes/media.php +++ b/src/wp-includes/media.php @@ -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); }