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 |
---|---|
1410 | * @since 4.4.0 |
1411 | * |
1412 | * @param string $sizes A source size value for use in a 'sizes' attribute. |
1413 | * @param array|string $size Requested size. Image size or array of width and height values |
1414 | * in pixels (in that order). |
1415 | * @param string|null $image_src The URL to the image file or null. |
1416 | * @param array|null $image_meta The image meta data as returned by wp_get_attachment_metadata() or null. |
1417 | * @param int $attachment_id Image attachment ID of the original image or 0. |
1418 | */ |
1419 | return apply_filters( 'wp_calculate_image_sizes', $sizes, $size, $image_src, $image_meta, $attachment_id ); |
1420 | } |
1421 |
|
1422 | /** |
1423 | * Filters 'img' elements in post content to add 'srcset' and 'sizes' attributes. |
1424 | * |
1425 | * @since 4.4.0 |
1426 | * |
1427 | * @see wp_image_add_srcset_and_sizes() |
1428 | * |