Changeset 41093
- Timestamp:
- 07/19/2017 08:11:28 PM (7 years ago)
- Location:
- branches/4.8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.8
-
branches/4.8/src/wp-includes/rest-api/class-wp-rest-server.php
r40805 r41093 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.