WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 982 | * |
| 983 | * This typically is just the route data for the namespace, but you can |
| 984 | * add any data you'd like here. |
| 985 | * |
| 986 | * @since 4.4.0 |
| 987 | * |
| 988 | * @param WP_REST_Response $response Response data. |
| 989 | * @param WP_REST_Request $request Request data. The namespace is passed as the 'namespace' parameter. |
| 990 | */ |
| 991 | return apply_filters( 'rest_namespace_index', $response, $request ); |
| 992 | } |
| 993 | |
| 994 | /** |
| 995 | * Retrieves the publicly-visible data for routes. |
| 996 | * |
| 997 | * @since 4.4.0 |
| 998 | * @access public |
| 999 | * |
| 1000 | * @param array $routes Routes to get data for. |