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 |
---|---|
233 | /** |
234 | * Filter the GD image resource to be streamed to the browser. |
235 | * |
236 | * @since 2.9.0 |
237 | * @deprecated 3.5.0 Use image_editor_save_pre instead. |
238 | * |
239 | * @param resource $image Image resource to be streamed. |
240 | * @param int $post_id Post ID. |
241 | */ |
242 | $image = apply_filters( 'image_save_pre', $image, $post_id ); |
243 |
|
244 | switch ( $mime_type ) { |
245 | case 'image/jpeg': |
246 | header( 'Content-Type: image/jpeg' ); |
247 | return imagejpeg( $image, null, 90 ); |
248 | case 'image/png': |
249 | header( 'Content-Type: image/png' ); |
250 | return imagepng( $image ); |
251 | case 'image/gif': |
Line | Code |
290 |
|
291 | if ( null !== $saved ) |
292 | return $saved; |
293 |
|
294 | return $image->save( $filename, $mime_type ); |
295 | } else { |
296 | _deprecated_argument( __FUNCTION__, '3.5', __( '$image needs to be an WP_Image_Editor object' ) ); |
297 |
|
298 | /** This filter is documented in wp-admin/includes/image-edit.php */ |
299 | $image = apply_filters( 'image_save_pre', $image, $post_id ); |
300 |
|
301 | /** |
302 | * Filter whether to skip saving the image file. |
303 | * |
304 | * Returning a non-null value will short-circuit the save method, |
305 | * returning that value instead. |
306 | * |
307 | * @since 2.9.0 |
308 | * @deprecated 3.5.0 Use wp_save_image_editor_file instead. |