Correct 'wp_get_attachment_image_attributes' filter docs.

props tillkruess.
fixes #29701.
Built from https://develop.svn.wordpress.org/trunk@29750


git-svn-id: http://core.svn.wordpress.org/trunk@29522 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2014-09-18 12:36:17 +00:00
parent 1447092f6e
commit 2008fc0c89
1 changed files with 2 additions and 2 deletions

View File

@ -719,8 +719,8 @@ function wp_get_attachment_image($attachment_id, $size = 'thumbnail', $icon = fa
*
* @since 2.8.0
*
* @param mixed $attr Attributes for the image markup.
* @param int $attachment_id Image attachment ID.
* @param mixed $attr Attributes for the image markup.
* @param int $attachment Image attachment post.
*/
$attr = apply_filters( 'wp_get_attachment_image_attributes', $attr, $attachment );
$attr = array_map( 'esc_attr', $attr );