diff --git a/src/wp-includes/media.php b/src/wp-includes/media.php
index f4492fc..2a397c0 100644
a
|
b
|
function wp_get_attachment_image($attachment_id, $size = 'thumbnail', $icon = fa |
719 | 719 | * |
720 | 720 | * @since 2.8.0 |
721 | 721 | * |
722 | | * @param mixed $attr Attributes for the image markup. |
723 | | * @param int $attachment Image attachment post. |
| 722 | * @param mixed $attr Attributes for the image markup. |
| 723 | * @param int $attachment Image attachment post. |
| 724 | * @param string|array $size Requested size. |
724 | 725 | */ |
725 | | $attr = apply_filters( 'wp_get_attachment_image_attributes', $attr, $attachment ); |
| 726 | $attr = apply_filters( 'wp_get_attachment_image_attributes', $attr, $attachment, $size ); |
726 | 727 | $attr = array_map( 'esc_attr', $attr ); |
727 | 728 | $html = rtrim("<img $hwstring"); |
728 | 729 | foreach ( $attr as $name => $value ) { |