Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_thumbnail_size

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
122       * Filters the post thumbnail size.
123       *
124       * @since 2.9.0
125       * @since 4.9.0 Added the `$post_id` parameter.
126       *
127       * @param string|array $size    The post thumbnail size. Image size or array of width and height
128       *                              values (in that order). Default 'post-thumbnail'.
129       * @param int          $post_id The post ID.
130       */
131      $size = apply_filters( 'post_thumbnail_size', $size, $post->ID );
132
133      if ( $post_thumbnail_id ) {
134
135           /**
136            * Fires before fetching the post thumbnail HTML.
137            *
138            * Provides "just in time" filtering of all filters in wp_get_attachment_image().
139            *
140            * @since 2.9.0