WP HOOKS
filtrod 2.7.0

http_request_redirection_count

Args 2Plik wp-includes/class-wp-http.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the number of redirects allowed during an HTTP request.

Parametry

ParametrTypOpis
$redirect_countintNumber of redirects allowed. Default 5.
$urlstringThe request URL.

Wywołanie

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

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

Popularne w tej kategorii