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