Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: end_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
173            * Fires after fetching the post thumbnail HTML.
174            *
175            * @since 2.9.0
176            *
177            * @param int          $post_id           The post ID.
178            * @param string       $post_thumbnail_id The post thumbnail ID.
179            * @param string|array $size              The post thumbnail size. Image size or array of width
180            *                                        and height values (in that order). Default 'post-thumbnail'.
181            */
182           do_action( 'end_fetch_post_thumbnail_html', $post->ID, $post_thumbnail_id, $size );
183
184      } else {
185           $html = '';
186      }
187      /**
188       * Filters the post thumbnail HTML.
189       *
190       * @since 2.9.0
191       *