WP_REST_Request::__construct() WordPress Method
This method initializes a new WP_REST_Request object. It takes two parameters: $method - The HTTP method for the request. This can be 'GET', 'POST', 'PUT', 'PATCH', or 'DELETE'. $route - The REST API route for the request. This should be a string in the format '/path/to/resource'.
WP_REST_Request::__construct( string $method = '', string $route = '', array $attributes = array() ) #
Constructor.
Parameters
- $method
(string)(Optional) Request method.
Default value: ''
- $route
(string)(Optional) Request route.
Default value: ''
- $attributes
(array)(Optional) Request attributes.
Default value: array()
Source
File: wp-includes/rest-api/class-wp-rest-request.php
public function __construct( $method = '', $route = '', $attributes = array() ) {
$this->params = array(
'URL' => array(),
'GET' => array(),
'POST' => array(),
'FILES' => array(),
// See parse_json_params.
'JSON' => null,
'defaults' => array(),
);
$this->set_method( $method );
$this->set_route( $route );
$this->set_attributes( $attributes );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 4.4.0 | Introduced. |