Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_pre_echo_response

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
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
404                // The 204 response shouldn't have a body.
405                if ( 204 === $code || null === $result ) {
406                     return null;
407                }
408
409                $result = wp_json_encode( $result );
410
411                $json_error_message = $this->get_json_last_error();