Changeset 40961
- Timestamp:
- 06/29/2017 01:16:19 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/class-wp-rest-server.php
r40805 r40961 387 387 // Embed links inside the request. 388 388 $result = $this->response_to_data( $result, isset( $_GET['_embed'] ) ); 389 390 /** 391 * Filters the API response. 392 * 393 * Allows modification of the response data after inserting 394 * embedded data (if any) and before echoing the response data. 395 * 396 * @since 4.8.1 397 * 398 * @param array $result Response data to send to the client. 399 * @param WP_REST_Server $this Server instance. 400 * @param WP_REST_Request $request Request used to generate the response. 401 */ 402 $result = apply_filters( 'rest_pre_echo_response', $result, $this, $request ); 389 403 390 404 $result = wp_json_encode( $result );
Note: See TracChangeset
for help on using the changeset viewer.