Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_prepare_url_details

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
178            * Filters the URL data for the response.
179            *
180            * @since 5.9.0
181            *
182            * @param WP_REST_Response $response            The response object.
183            * @param string           $url                 The requested URL.
184            * @param WP_REST_Request  $request             Request object.
185            * @param string           $remote_url_response HTTP response body from the remote URL.
186            */
187           return apply_filters( 'rest_prepare_url_details', $response, $url, $request, $remote_url_response );
188      }
189
190      /**
191       * Checks whether a given request has permission to read remote urls.
192       *
193       * @since 5.9.0
194       *
195       * @return WP_Error|bool True if the request has permission, else WP_Error.
196       */