get_image_tag WordPress Filter Hook
The get_image_tag hook is used to filter the image tag before it is outputted to the screen. This hook is useful for making changes to the image tag before it is displayed on the front end of the website.
apply_filters( 'get_image_tag', string $html , int $id , string $alt , string $title , string $align , string|int[] $size ) #
Filters the HTML content for the image tag.
Parameters
- $html
(string)HTML content for the image.
- $id
(int)Attachment ID.
- $alt
(string)Image description for the alt attribute.
- $title
(string)Image description for the title attribute.
- $align
(string)Part of the class name for aligning the image.
- $size
(string|int[])Requested image size. Can be any registered image size name, or an array of width and height values in pixels (in that order).
Source
File: wp-includes/media.php
Changelog
Version | Description |
---|---|
2.6.0 | Introduced. |