Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_request_before_callbacks

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
892                      * Note that this filter will not be called for requests that
893                      * fail to authenticate or match to a registered route.
894                      *
895                      * @since 4.7.0
896                      *
897                      * @param WP_HTTP_Response $response Result to send to the client. Usually a WP_REST_Response.
898                      * @param WP_REST_Server   $handler  ResponseHandler instance (usually WP_REST_Server).
899                      * @param WP_REST_Request  $request  Request used to generate the response.
900                      */
901                     $response = apply_filters( 'rest_request_before_callbacks', $response, $handler, $request );
902
903                     if ( ! is_wp_error( $response ) ) {
904                          // Check permission specified on the route.
905                          if ( ! empty( $handler['permission_callback'] ) ) {
906                               $permission = call_user_func( $handler['permission_callback'], $request );
907
908                               if ( is_wp_error( $permission ) ) {
909                                    $response = $permission;
910                               } elseif ( false === $permission || null === $permission ) {