do_action( 'delete_widget', string $widget_id, string $sidebar_id, string $id_base )
- Since
- 4.4.0
Fires immediately after a widget has been marked for deletion.
Compatibility
- WordPress
- since 4.4.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$widget_idstring- ID of the widget marked for deletion.
$sidebar_idstring- ID of the sidebar the widget was deleted from.
$id_basestring- ID base for the widget.
Where this hook fires · 3
wp-admin/includes/ajax-actions.php:2404wp_ajax_save_widget()wp-admin/widgets-form.php:169file scopewp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:413WP_REST_Widgets_Controller::delete_item()
Source code
* @since 4.4.0 * * @param string $widget_id ID of the widget marked for deletion. * @param string $sidebar_id ID of the sidebar the widget was deleted from. * @param string $id_base ID base for the widget. */ do_action( 'delete_widget', $widget_id, $sidebar_id, $id_base ); } $_POST['widget-id'] = $sidebar; foreach ( (array) $wp_registered_widget_updates as $name => $control ) { if ( $name !== $id_base || ! is_callable( $control['callback'] ) ) {Changelog
Introduced in 4.4.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.7.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.