WP_REST_Request::set_body( string $data )
Sets body content.
Parameters
- $data
-
(Required) Binary data from the request body.
Source
File: wp-includes/rest-api/class-wp-rest-request.php
public function set_body( $data ) {
$this->body = $data;
// Enable lazy parsing.
$this->parsed_json = false;
$this->parsed_body = false;
$this->params['JSON'] = null;
}
Changelog
Version | Description |
---|---|
WP-4.4.0 | Introduced. |