wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_get_attachment_image_src › WordPress Filter Hooks

Seit4.3.0
Veraltetn/v
apply_filters( 'wp_get_attachment_image_src', $image, $attachment_id, $size, $icon )
Parameter: (4)
  • () 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. }
    Erforderlich: Ja
  • () attachment_id Image attachment ID.
    Erforderlich: Ja
  • () size Requested image size. Can be any registered image size name, or an array of width and height values in pixels (in that order).
    Erforderlich: Ja
  • () icon Whether the image should be treated as an icon.
    Erforderlich: Ja
Definiert in:
Codex:

Filters the attachment image source result.





Quellcode

return apply_filters( 'wp_get_attachment_image_src', $image, $attachment_id, $size, $icon );