Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_delete_widget

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
459            * Fires after a widget is deleted via the REST API.
460            *
461            * @since 5.8.0
462            *
463            * @param string                    $widget_id  ID of the widget marked for deletion.
464            * @param string                    $sidebar_id ID of the sidebar the widget was deleted from.
465            * @param WP_REST_Response|WP_Error $response   The response data, or WP_Error object on failure.
466            * @param WP_REST_Request           $request    The request sent to the API.
467            */
468           do_action( 'rest_delete_widget', $widget_id, $sidebar_id, $response, $request );
469
470           return $response;
471      }
472
473      /**
474       * Performs a permissions check for managing widgets.
475       *
476       * @since 5.8.0
477       *