Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_get_missing_image_subsizes

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
135       * Filters the array of missing image sub-sizes for an uploaded image.
136       *
137       * @since 5.3.0
138       *
139       * @param array[] $missing_sizes Associative array of arrays of image sub-size information for
140       *                               missing image sizes, keyed by image size name.
141       * @param array   $image_meta    The image meta data.
142       * @param int     $attachment_id The image attachment post ID.
143       */
144      return apply_filters( 'wp_get_missing_image_subsizes', $missing_sizes, $image_meta, $attachment_id );
145 }
146
147 /**
148  * If any of the currently registered image sub-sizes are missing,
149  * create them and update the image meta data.
150  *
151  * @since 5.3.0
152  *
153  * @param int $attachment_id The image attachment post ID.