Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_pre_dispatch

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

This hook occurs 2 times in this file.

Line Code
963            * will be used to serve the request instead.
964            *
965            * @since 4.4.0
966            *
967            * @param mixed           $result  Response to replace the requested version with. Can be anything
968            *                                 a normal endpoint can return, or null to not hijack the request.
969            * @param WP_REST_Server  $this    Server instance.
970            * @param WP_REST_Request $request Request used to generate the response.
971            */
972           $result = apply_filters( 'rest_pre_dispatch', null, $this, $request );
973
974           if ( ! empty( $result ) ) {
975                return $result;
976           }
977
978           $error   = null;
979           $matched = $this->match_request_to_handler( $request );
980
981           if ( is_wp_error( $matched ) ) {
 
Line Code
1558           }
1559
1560           foreach ( $requests as $i => $single_request ) {
1561                $clean_request = clone $single_request;
1562                $clean_request->set_url_params( array() );
1563                $clean_request->set_attributes( array() );
1564                $clean_request->set_default_params( array() );
1565
1566                /** This filter is documented in wp-includes/rest-api/class-wp-rest-server.php */
1567                $result = apply_filters( 'rest_pre_dispatch', null, $this, $clean_request );
1568
1569                if ( empty( $result ) ) {
1570                     $match = $matches[ $i ];
1571                     $error = null;
1572
1573                     if ( is_wp_error( $validation[ $i ] ) ) {
1574                          $error = $validation[ $i ];
1575                     }
1576