Yoast\WP\SEO\AI_HTTP_Request\Domain
Request::is_post
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() Request::is post Yoast 27.8
public function is_post(): bool {
return $this->is_post;
}