Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_prepare_menu_location

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
198           /**
199            * Filters menu location data returned from the REST API.
200            *
201            * @since 5.9.0
202            *
203            * @param WP_REST_Response $response The response object.
204            * @param object           $location The original location object.
205            * @param WP_REST_Request  $request  Request used to generate the response.
206            */
207           return apply_filters( 'rest_prepare_menu_location', $response, $location, $request );
208      }
209
210      /**
211       * Retrieves the menu location's schema, conforming to JSON Schema.
212       *
213       * @since 5.9.0
214       *
215       * @return array Item schema data.
216       */