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 |
|---|---|
| 3969 | * |
| 3970 | * Allows to add filters to modify the way a cropped image is saved. |
| 3971 | * |
| 3972 | * @since 4.3.0 |
| 3973 | * |
| 3974 | * @param string $context The Customizer control requesting the cropped image. |
| 3975 | * @param int $attachment_id The attachment ID of the original image. |
| 3976 | * @param string $cropped Path to the cropped image file. |
| 3977 | */ |
| 3978 | do_action( 'wp_ajax_crop_image_pre_save', $context, $attachment_id, $cropped ); |
| 3979 | |
| 3980 | /** This filter is documented in wp-admin/includes/class-custom-image-header.php */ |
| 3981 | $cropped = apply_filters( 'wp_create_file_in_uploads', $cropped, $attachment_id ); // For replication. |
| 3982 | |
| 3983 | $parent_url = wp_get_attachment_url( $attachment_id ); |
| 3984 | $parent_basename = wp_basename( $parent_url ); |
| 3985 | $url = str_replace( $parent_basename, wp_basename( $cropped ), $parent_url ); |
| 3986 | |
| 3987 | $size = wp_getimagesize( $cropped ); |