Make WordPress Core

Ticket #38964: 38964.2.diff

File 38964.2.diff, 1.0 KB (added by jnylen0, 6 years ago)
  • src/wp-includes/rest-api/class-wp-rest-server.php

    diff --git a/src/wp-includes/rest-api/class-wp-rest-server.php b/src/wp-includes/rest-api/class-wp-rest-server.php
    index 11b8897..2ec8ccd 100644
    a b class WP_REST_Server { 
    387387                        // Embed links inside the request.
    388388                        $result = $this->response_to_data( $result, isset( $_GET['_embed'] ) );
    389389
     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 );
     403
    390404                        $result = wp_json_encode( $result );
    391405
    392406                        $json_error_message = $this->get_json_last_error();