apply_filters( 'wp_get_attachment_link', string $link_html , int|WP_Post $post , string|int[] $size , bool $permalink , bool $icon , string|false $text , array|string $attr )
Filters a retrieved attachment page link.
Parameters
- $link_html
-
The page link HTML output.
- $post
-
Post ID or object. Can be 0 for the current global post.
- $size
-
Requested image size. Can be any registered image size name, or an array of width and height values in pixels (in that order).
- $permalink
-
Whether to add permalink to image. Default false.
- $icon
-
Whether to include an icon.
- $text
-
If string, will be link text.
- $attr
-
Array or string of attributes.
Source
Changelog
Version | Description |
---|---|
5.1.0 | Added the $attr parameter. |
2.7.0 | Introduced. |