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
129      /**
130       * Filters the array of missing image sub-sizes for an uploaded image.
131       *
132       * @since 5.3.0
133       *
134       * @param array $missing_sizes Array with the missing image sub-sizes.
135       * @param array $image_meta    The image meta data.
136       * @param int   $attachment_id The image attachment post ID.
137       */
138      return apply_filters( 'wp_get_missing_image_subsizes', $missing_sizes, $image_meta, $attachment_id );
139 }
140
141 /**
142  * If any of the currently registered image sub-sizes are missing,
143  * create them and update the image meta data.
144  *
145  * @since 5.3.0
146  *
147  * @param int $attachment_id The image attachment post ID.