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 |
|---|---|
| 1186 | * @since 4.4.0 |
| 1187 | * |
| 1188 | * @param string $sizes A source size value for use in a 'sizes' attribute. |
| 1189 | * @param array|string $size Requested size. Image size or array of width and height values |
| 1190 | * in pixels (in that order). |
| 1191 | * @param string|null $image_src The URL to the image file or null. |
| 1192 | * @param array|null $image_meta The image meta data as returned by wp_get_attachment_metadata() or null. |
| 1193 | * @param int $attachment_id Image attachment ID of the original image or 0. |
| 1194 | */ |
| 1195 | return apply_filters( 'wp_calculate_image_sizes', $sizes, $size, $image_src, $image_meta, $attachment_id ); |
| 1196 | } |
| 1197 | |
| 1198 | /** |
| 1199 | * Filters 'img' elements in post content to add 'srcset' and 'sizes' attributes. |
| 1200 | * |
| 1201 | * @since 4.4.0 |
| 1202 | * |
| 1203 | * @see wp_image_add_srcset_and_sizes() |
| 1204 | * |