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
3512       *
3513       * @since 3.5.0
3514       *
3515       * @param string $output        Adjacent image HTML markup.
3516       * @param int    $attachment_id Attachment ID
3517       * @param string|int[] $size    Requested image size. Can be any registered image size name, or
3518       *                              an array of width and height values in pixels (in that order).
3519       * @param string $text          Link text.
3520       */
3521      return apply_filters( "{$adjacent}_image_link", $output, $attachment_id, $size, $text );
3522 }
3523
3524 /**
3525  * Displays next or previous image link that has the same post parent.
3526  *
3527  * Retrieves the current attachment object from the $post global.
3528  *
3529  * @since 2.5.0
3530  *