Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_get_attachment_caption

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
6674
6675      /**
6676       * Filters the attachment caption.
6677       *
6678       * @since 4.6.0
6679       *
6680       * @param string $caption Caption for the given attachment.
6681       * @param int    $post_id Attachment ID.
6682       */
6683      return apply_filters( 'wp_get_attachment_caption', $caption, $post->ID );
6684 }
6685
6686 /**
6687  * Retrieves URL for an attachment thumbnail.
6688  *
6689  * @since 2.1.0
6690  * @since 6.1.0 Changed to use wp_get_attachment_image_url().
6691  *
6692  * @param int $post_id Optional. Attachment ID. Default is the ID of the global `$post`.