From e73fbb948c42dfdd62a48e8c904663147de39fa4 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 12 Oct 2015 16:41:54 +0000 Subject: [PATCH] Docs: Adjust documentation for the `$size` parameter in the `wp_get_attachment_link` hook doc to clarify the required order of width and height values when an array is passed. Also adds the `array` type to the parameter documentation (already supported). See #34257. git-svn-id: https://develop.svn.wordpress.org/trunk@35065 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/post-template.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/post-template.php b/src/wp-includes/post-template.php index 66517b1c91..59e4a50370 100644 --- a/src/wp-includes/post-template.php +++ b/src/wp-includes/post-template.php @@ -1439,7 +1439,8 @@ function wp_get_attachment_link( $id = 0, $size = 'thumbnail', $permalink = fals * * @param string $link_html The page link HTML output. * @param int $id Post ID. - * @param string $size Image size. Default 'thumbnail'. + * @param string|array $size Size of the image. Image size or array of width and height values (in that order). + * Default 'thumbnail'. * @param bool $permalink Whether to add permalink to image. Default false. * @param bool $icon Whether to include an icon. Default false. * @param string|bool $text If string, will be link text. Default false.