WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about wp_get_attachment_image_src

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-includes/media.php apply_filters 992 /**
* Filters the attachment image source result.
*
* @since 4.3.0
*
* @param array|false $image {
* Array of image data, or boolean false if no image is available.
*
* @type string $0 Image source URL.
* @type int $1 Image width in pixels.
* @type int $2 Image height in pixels.
* @type bool $3 Whether the image is a resized image.
* }
* @param int $attachment_id Image attachment ID.
* @param string|int[] $size Requested image size. Can be any registered image size name, or
* an array of width and height values in pixels (in that order).
* @param bool $icon Whether the image should be treated as an icon.
*/

Hook Parameters

Parameter Type Name Description
array|false $imag e {
int $attachment_id Image attachment ID.
string|int[] $size Requested image size. Can be any registered image size name, or
bool $icon Whether the image should be treated as an icon.