WP_REST_Request::set_method()
Sets HTTP method for the request.
Method of the class: WP_REST_Request{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WP_REST_Request = new WP_REST_Request(); $WP_REST_Request->set_method( $method );
- $method(string) (required)
- HTTP method.
Changelog
Since 4.4.0 | Introduced. |
WP_REST_Request::set_method() WP REST Request::set method code WP 6.6.2
public function set_method( $method ) { $this->method = strtoupper( $method ); }