WP HOOKS
filtrod 3.6.0

http_request_host_is_external

Args 3Plik wp-includes/http.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Checks if HTTP request is external or not.

Allows to change and allow external requests for the HTTP request.

Parametry

ParametrTypOpis
$externalboolWhether HTTP request is external or not.
$hoststringHost name of the requested URL.
$urlstringRequested URL.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'http_request_host_is_external', 'twoja_funkcja', 10, 3 );

function twoja_funkcja($param_1, $param_2, $param_3) {
	// Twój kod
}