Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_request_from_url

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
1037           /**
1038            * Filters the request generated from a URL.
1039            *
1040            * @since 4.5.0
1041            *
1042            * @param WP_REST_Request|false $request Generated request object, or false if URL
1043            *                                       could not be parsed.
1044            * @param string                $url     URL the request was generated from.
1045            */
1046           return apply_filters( 'rest_request_from_url', $request, $url );
1047      }
1048 }
1049