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 |
---|---|
262 | /** |
263 | * Filter the GD image resource to be streamed to the browser. |
264 | * |
265 | * @since 2.9.0 |
266 | * @deprecated 3.5.0 Use image_editor_save_pre instead. |
267 | * |
268 | * @param resource $image Image resource to be streamed. |
269 | * @param int $post_id Post ID. |
270 | */ |
271 | $image = apply_filters( 'image_save_pre', $image, $post_id ); |
272 |
|
273 | switch ( $mime_type ) { |
274 | case 'image/jpeg': |
275 | header( 'Content-Type: image/jpeg' ); |
276 | return imagejpeg( $image, null, 90 ); |
277 | case 'image/png': |
278 | header( 'Content-Type: image/png' ); |
279 | return imagepng( $image ); |
280 | case 'image/gif': |
Line | Code |
319 |
|
320 | if ( null !== $saved ) |
321 | return $saved; |
322 |
|
323 | return $image->save( $filename, $mime_type ); |
324 | } else { |
325 | _deprecated_argument( __FUNCTION__, '3.5', __( '$image needs to be an WP_Image_Editor object' ) ); |
326 |
|
327 | /** This filter is documented in wp-admin/includes/image-edit.php */ |
328 | $image = apply_filters( 'image_save_pre', $image, $post_id ); |
329 |
|
330 | /** |
331 | * Filter whether to skip saving the image file. |
332 | * |
333 | * Returning a non-null value will short-circuit the save method, |
334 | * returning that value instead. |
335 | * |
336 | * @since 2.9.0 |
337 | * @deprecated 3.5.0 Use wp_save_image_editor_file instead. |