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
920           /**
921            * Fires immediately after a user is deleted via the REST API.
922            *
923            * @since 4.7.0
924            *
925            * @param WP_User          $user     The user data.
926            * @param WP_REST_Response $response The response returned from the API.
927            * @param WP_REST_Request  $request  The request sent to the API.
928            */
929           do_action( 'rest_delete_user', $user, $response, $request );
930
931           return $response;
932      }
933
934      /**
935       * Checks if a given request has access to delete the current user.
936       *
937       * @since 4.7.0
938       *