Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: {$adjacent}_image_link

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
3456       *
3457       * @since 3.5.0
3458       *
3459       * @param string $output        Adjacent image HTML markup.
3460       * @param int    $attachment_id Attachment ID
3461       * @param string|int[] $size    Requested image size. Can be any registered image size name, or
3462       *                              an array of width and height values in pixels (in that order).
3463       * @param string $text          Link text.
3464       */
3465      echo apply_filters( "{$adjacent}_image_link", $output, $attachment_id, $size, $text );
3466 }
3467
3468 /**
3469  * Retrieves taxonomies attached to given the attachment.
3470  *
3471  * @since 2.5.0
3472  * @since 4.7.0 Introduced the `$output` parameter.
3473  *
3474  * @param int|array|object $attachment Attachment ID, data array, or data object.