Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: attachment_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
427
428      /**
429       * Filters the permalink for an attachment.
430       *
431       * @since 2.0.0
432       *
433       * @param string $link    The attachment's permalink.
434       * @param int    $post_id Attachment ID.
435       */
436      return apply_filters( 'attachment_link', $link, $post->ID );
437 }
438
439 /**
440  * Retrieves the permalink for the year archives.
441  *
442  * @since 1.5.0
443  *
444  * @global WP_Rewrite $wp_rewrite
445  *