Yoast\WP\SEO\Services\Health_Check
Ryte_Runner::fetch_from_ryte()
Attempts to get a new indexability status from Ryte.
{} Это метод класса: Ryte_Runner{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
// private - только в коде основоного (родительского) класса $result = $this->fetch_from_ryte();
Код Ryte_Runner::fetch_from_ryte() Ryte Runner::fetch from ryte Yoast 19.2
private function fetch_from_ryte() { $this->ryte->fetch_from_ryte(); $response = $this->ryte->get_response(); if ( is_array( $response ) && isset( $response['is_error'] ) ) { $this->got_valid_response = false; $this->response_error = $response; return; } $this->got_valid_response = true; }