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 |
---|---|
1488 | * @since 4.4.0 |
1489 | * |
1490 | * @param string $sizes A source size value for use in a 'sizes' attribute. |
1491 | * @param array|string $size Requested size. Image size or array of width and height values |
1492 | * in pixels (in that order). |
1493 | * @param string|null $image_src The URL to the image file or null. |
1494 | * @param array|null $image_meta The image meta data as returned by wp_get_attachment_metadata() or null. |
1495 | * @param int $attachment_id Image attachment ID of the original image or 0. |
1496 | */ |
1497 | return apply_filters( 'wp_calculate_image_sizes', $sizes, $size, $image_src, $image_meta, $attachment_id ); |
1498 | } |
1499 |
|
1500 | /** |
1501 | * Determines if the image meta data is for the image source file. |
1502 | * |
1503 | * The image meta data is retrieved by attachment post ID. In some cases the post IDs may change. |
1504 | * For example when the website is exported and imported at another website. Then the |
1505 | * attachment post IDs that are in post_content for the exported website may not match |
1506 | * the same attachments at the new website. |