do_action( 'wp_ajax_crop_image_pre_save', string $context, int $attachment_id, string $cropped )

Fires before a cropped image is saved.


Description

Allows to add filters to modify the way a cropped image is saved.


Top ↑

Parameters

$context string
The Customizer control requesting the cropped image.
$attachment_id int
The attachment ID of the original image.
$cropped string
Path to the cropped image file.

Top ↑

Source

File: wp-admin/includes/ajax-actions.php. View all references

do_action( 'wp_ajax_crop_image_pre_save', $context, $attachment_id, $cropped );


Top ↑

Changelog

Changelog
Version Description
4.3.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.