Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: begin_fetch_post_thumbnail_html

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
157            * Provides "just in time" filtering of all filters in wp_get_attachment_image().
158            *
159            * @since 2.9.0
160            *
161            * @param int          $post_id           The post ID.
162            * @param string       $post_thumbnail_id The post thumbnail ID.
163            * @param string|array $size              The post thumbnail size. Image size or array of width
164            *                                        and height values (in that order). Default 'post-thumbnail'.
165            */
166           do_action( 'begin_fetch_post_thumbnail_html', $post->ID, $post_thumbnail_id, $size );
167           if ( in_the_loop() ) {
168                update_post_thumbnail_cache();
169           }
170           $html = wp_get_attachment_image( $post_thumbnail_id, $size, false, $attr );
171
172           /**
173            * Fires after fetching the post thumbnail HTML.
174            *
175            * @since 2.9.0