Correct 'wp_get_attachment_image_attributes' filter docs.

props tillkruess.
fixes #29701.

git-svn-id: https://develop.svn.wordpress.org/trunk@29750 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2014-09-18 12:35:25 +00:00
parent 9c751b268a
commit 5b2c58d5b3
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 );