WP_REST_Request::get_method()publicWP 4.4.0

Retrieves the HTTP method for the request.

Метод класса: WP_REST_Request{}

Хуков нет.

Возвращает

Строку. HTTP method.

Использование

$WP_REST_Request = new WP_REST_Request();
$WP_REST_Request->get_method();

Список изменений

С версии 4.4.0 Введена.

Код WP_REST_Request::get_method() WP 6.5.2

public function get_method() {
	return $this->method;
}