WP HOOKS
akcjaod 2.6.0

set_logged_in_cookie

Args 6Plik wp-includes/pluggable.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Fires immediately before the logged-in authentication cookie is set.

Parametry

ParametrTypOpis
$logged_in_cookiestringThe logged-in cookie value.
$expireintThe time the login grace period expires as a UNIX timestamp. Default is 12 hours past the cookie's expiration time.
$expirationintThe time when the logged-in authentication cookie expires as a UNIX timestamp. Default is 14 days from now.
$user_idintUser ID.
$schemestringAuthentication scheme. Default 'logged_in'.
$tokenstringUser's session token to use for this cookie.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'set_logged_in_cookie', 'twoja_funkcja', 10, 6 );

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

Popularne w tej kategorii