WP_REST_Server::get_data_for_routes
Retrieves the publicly-visible data for routes.
Method of the class: WP_REST_Server{}
Hooks from the method
Returns
Array[]. Route data to expose in indexes, keyed by route.
Usage
$WP_REST_Server = new WP_REST_Server(); $WP_REST_Server->get_data_for_routes( $routes, $context );
- $routes(array) (required)
- Routes to get data for.
- $context(string)
- Context for data. Accepts 'view' or 'help'.
Default: 'view'
Changelog
| Since 4.4.0 | Introduced. |
WP_REST_Server::get_data_for_routes() WP REST Server::get data for routes code WP 6.8.3
public function get_data_for_routes( $routes, $context = 'view' ) {
$available = array();
// Find the available routes.
foreach ( $routes as $route => $callbacks ) {
$data = $this->get_data_for_route( $route, $callbacks, $context );
if ( empty( $data ) ) {
continue;
}
/**
* Filters the publicly-visible data for a single REST API route.
*
* @since 4.4.0
*
* @param array $data Publicly-visible data for the route.
*/
$available[ $route ] = apply_filters( 'rest_endpoints_description', $data );
}
/**
* Filters the publicly-visible data for REST API routes.
*
* This data is exposed on indexes and can be used by clients or
* developers to investigate the site and find out how to use it. It
* acts as a form of self-documentation.
*
* @since 4.4.0
*
* @param array[] $available Route data to expose in indexes, keyed by route.
* @param array $routes Internal route data as an associative array.
*/
return apply_filters( 'rest_route_data', $available, $routes );
}