WP_REST_Request::set_body_params() WordPress Method
The WP_REST_Request::set_body_params() method is used to set the body parameters for a request. The body parameters are used to pass data to the server when making a request.
WP_REST_Request::set_body_params( array $params ) #
Sets parameters from the body.
Description
Typically, this is set from $_POST
.
Parameters
- $params
(array)(Required)Parameter map of key to value.
Source
File: wp-includes/rest-api/class-wp-rest-request.php
public function set_body_params( $params ) { $this->params['POST'] = $params; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |