Changeset 36536
- Timestamp:
- 02/16/2016 06:05:02 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/class-wp-rest-server.php
r36535 r36536 341 341 * 342 342 * @since 4.4.0 343 * @since 4.5.0 Applied to embedded responses. 343 344 * 344 345 * @param WP_HTTP_Response $result Result to send to the client. Usually a WP_REST_Response. … … 567 568 $request->set_query_params( $query_params ); 568 569 $response = $this->dispatch( $request ); 570 571 /** This filter is documented in wp-includes/rest-api/class-wp-rest-server.php */ 572 $response = apply_filters( 'rest_post_dispatch', rest_ensure_response( $response ), $this, $request ); 569 573 570 574 $embeds[] = $this->response_to_data( $response, false );
Note: See TracChangeset
for help on using the changeset viewer.