Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_delete_user

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
931           /**
932            * Fires immediately after a user is deleted via the REST API.
933            *
934            * @since 4.7.0
935            *
936            * @param WP_User          $user     The user data.
937            * @param WP_REST_Response $response The response returned from the API.
938            * @param WP_REST_Request  $request  The request sent to the API.
939            */
940           do_action( 'rest_delete_user', $user, $response, $request );
941
942           return $response;
943      }
944
945      /**
946       * Checks if a given request has access to delete the current user.
947       *
948       * @since 4.7.0
949       *