WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
164 | * Provides "just in time" filtering of all filters in wp_get_attachment_image(). |
165 | * |
166 | * @since 2.9.0 |
167 | * |
168 | * @param int $post_id The post ID. |
169 | * @param int $post_thumbnail_id The post thumbnail ID. |
170 | * @param string|int[] $size Requested image size. Can be any registered image size name, or |
171 | * an array of width and height values in pixels (in that order). |
172 | */ |
173 | do_action( 'begin_fetch_post_thumbnail_html', $post->ID, $post_thumbnail_id, $size ); |
174 |
|
175 | if ( in_the_loop() ) { |
176 | update_post_thumbnail_cache(); |
177 | } |
178 |
|
179 | $html = wp_get_attachment_image( $post_thumbnail_id, $size, false, $attr ); |
180 |
|
181 | /** |
182 | * Fires after fetching the post thumbnail HTML. |