WpOrg\Requests

Iri::get_authority()protectedWP 1.0

Get the complete authority

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

Хуков нет.

Возвращает

Строку.

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->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;
	}
}