Yoast\WP\SEO\AI_HTTP_Request\Domain

Request::is_postpublicYoast 1.0

Whether the request is a POST request.

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

Хуков нет.

Возвращает

true|false. True if the request is a POST request, false otherwise.

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

$Request = new Request();
$Request->is_post(): bool;

Код Request::is_post() Yoast 27.8

public function is_post(): bool {
	return $this->is_post;
}