do_action( 'rest_after_save_widget', string $id, string $sidebar_id, WP_REST_Request $request, bool $creating )

Fires after a widget is created or updated via the REST API.


Parameters

$id string
ID of the widget being saved.
$sidebar_id string
ID of the sidebar containing the widget being saved.
$request WP_REST_Request
Request object.
$creating bool
True when creating a widget, false when updating.

Top ↑

Source

File: wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php. View all references

do_action( 'rest_after_save_widget', $id, $sidebar_id, $request, $creating );


Top ↑

Changelog

Changelog
Version Description
5.8.0 Introduced.

Top ↑

User Contributed Notes

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