wp_ajax_crop_image_pre_save, $context, $attachment_id, $cropped

wp_ajax_crop_image_pre_save, $context, $attachment_id, $cropped

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: 7.0.3

do_action('wp_ajax_crop_image_pre_save, $context, $attachment_id, $cropped') is found 1 times:

  • /wp-admin/includes/ajax-actions.php line 4079
    			 * @param string $context       The Customizer control requesting the cropped image.
    			 * @param int    $attachment_id The attachment ID of the original image.
    			 * @param string $cropped       Path to the cropped image file.
    			 */
    			do_action( 'wp_ajax_crop_image_pre_save', $context, $attachment_id, $cropped );
    
    			/** This filter is documented in wp-admin/includes/class-custom-image-header.php */
    			$cropped = apply_filters( 'wp_create_file_in_uploads', $cropped, $attachment_id ); // For replication.
    
    			// Copy attachment properties.
    			$attachment = wp_copy_parent_attachment_properties( $cropped, $attachment_id, $context );