Correct the position of the $alt parameter's @param doc in image_add_caption().

See #32246


git-svn-id: https://develop.svn.wordpress.org/trunk@35918 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2015-12-14 03:00:09 +00:00
parent 5f5898d200
commit 6b718eaa83

View File

@ -158,11 +158,11 @@ function get_image_send_to_editor( $id, $caption, $title, $align, $url = '', $re
* @param string $html
* @param integer $id
* @param string $caption image caption
* @param string $alt image alt attribute
* @param string $title image title attribute
* @param string $align image css alignment property
* @param string $url image src url
* @param string $size image size (thumbnail, medium, large, full or added with add_image_size() )
* @param string $alt image alt attribute
* @return string
*/
function image_add_caption( $html, $id, $caption, $title, $align, $url, $size, $alt = '' ) {