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.
This hook occurs 2 times in this file.
Line | Code |
---|---|
158 | * Passing a truthy value to the filter will effectively short-circuit |
159 | * down-sizing the image, returning that value as output instead. |
160 | * |
161 | * @since 2.5.0 |
162 | * |
163 | * @param bool $downsize Whether to short-circuit the image downsize. Default false. |
164 | * @param int $id Attachment ID for image. |
165 | * @param array|string $size Size of image, either array or string. Default 'medium'. |
166 | */ |
167 | if ( $out = apply_filters( 'image_downsize', false, $id, $size ) ) { |
168 | return $out; |
169 | } |
170 |
|
171 | $img_url = wp_get_attachment_url($id); |
172 | $meta = wp_get_attachment_metadata($id); |
173 | $width = $height = 0; |
174 | $is_intermediate = false; |
175 | $img_url_basename = wp_basename($img_url); |
176 |
|
Line | Code |
2766 | unset( $possible_sizes['full'] ); |
2767 |
|
2768 | // Loop through all potential sizes that may be chosen. Try to do this with some efficiency. |
2769 | // First: run the image_downsize filter. If it returns something, we can use its data. |
2770 | // If the filter does not return something, then image_downsize() is just an expensive |
2771 | // way to check the image metadata, which we do second. |
2772 | foreach ( $possible_sizes as $size => $label ) { |
2773 |
|
2774 | /** This filter is documented in wp-includes/media.php */ |
2775 | if ( $downsize = apply_filters( 'image_downsize', false, $attachment->ID, $size ) ) { |
2776 | if ( ! $downsize[3] ) |
2777 | continue; |
2778 | $sizes[ $size ] = array( |
2779 | 'height' => $downsize[2], |
2780 | 'width' => $downsize[1], |
2781 | 'url' => $downsize[0], |
2782 | 'orientation' => $downsize[2] > $downsize[1] ? 'portrait' : 'landscape', |
2783 | ); |
2784 | } elseif ( isset( $meta['sizes'][ $size ] ) ) { |