WP_REST_Request::set_body() WordPress Method
The WP_REST_Request::set_body() method sets the body of the request. This is useful for setting the body of a POST or PUT request.
WP_REST_Request::set_body( string $data ) #
Sets body content.
Contents
Parameters
- $data
(string)(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; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |