WpOrg\Requests
Iri::get_authority()
Get the complete authority
Метод класса: Iri{}
Хуков нет.
Возвращает
Строку
.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_authority();
Код Iri::get_authority() Iri::get authority WP 6.6.2
protected function get_authority() { $iauthority = $this->get_iauthority(); if (is_string($iauthority)) { return $this->to_uri($iauthority); } else { return $iauthority; } }