WP_REST_Request::get_method() public WP 4.4.0
Retrieves the HTTP method for the request.
{} It's a method of the class: WP_REST_Request{}
No Hooks.
Return
String. HTTP method.
Usage
$WP_REST_Request = new WP_REST_Request(); $WP_REST_Request->get_method();
Changelog
Since 4.4.0 | Introduced. |
Code of WP_REST_Request::get_method() WP REST Request::get method WP 5.6
public function get_method() {
return $this->method;
}