WP HOOKS
filtrod 4.2.0

logout_redirect

Args 3Plik wp-login.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the log out redirect URL.

Parametry

ParametrTypOpis
$redirect_tostringThe redirect destination URL.
$requested_redirect_tostringThe requested redirect destination URL passed as a parameter.
$user\WP_UserThe WP_User object for the user that's logging out.

Wywołanie

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

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

Popularne w tej kategorii