From 9857a80406a01d4457d19d268f3cfd90bac891b8 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 17 Nov 2023 15:31:52 +0000 Subject: [PATCH] Docs: Fix typo in `get_image_tag()` DocBlock. Follow-up to [54173]. Props kitchin. See #55646, #59651. git-svn-id: https://develop.svn.wordpress.org/trunk@57121 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/media.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/media.php b/src/wp-includes/media.php index 5408ad8957c83..224d8a18caf98 100644 --- a/src/wp-includes/media.php +++ b/src/wp-includes/media.php @@ -378,7 +378,7 @@ function set_post_thumbnail_size( $width = 0, $height = 0, $crop = false ) { * @param string $align Part of the class name for aligning the image. * @param string|int[] $size Optional. Image size. Accepts any registered image size name, or an array of * width and height values in pixels (in that order). Default 'medium'. - * @return string HTML IMG element for given image attachment? + * @return string HTML IMG element for given image attachment. */ function get_image_tag( $id, $alt, $title, $align, $size = 'medium' ) {