wp_ajax_crop_image_pre_save

wp_ajax_crop_image_pre_save

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.5.2

do_action('wp_ajax_crop_image_pre_save') is found 1 times:

  • /wp-admin/includes/ajax-actions.php line 4064
    			 * @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 );