WP_REST_Request::get_body_params()
Retrieves parameters from the body.
These are the parameters you'd typically find in $_POST.
Method of the class: WP_REST_Request{}
No Hooks.
Return
Array
. Parameter map of key to value.
Usage
$WP_REST_Request = new WP_REST_Request(); $WP_REST_Request->get_body_params();
Changelog
Since 4.4.0 | Introduced. |
WP_REST_Request::get_body_params() WP REST Request::get body params code WP 6.6.2
public function get_body_params() { return $this->params['POST']; }