akcjaod 2.5.0
set_auth_cookie
Opis — z kodu źródłowego
Fires immediately before the authentication cookie is set.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$auth_cookie | string | Authentication cookie value. |
$expire | int | The time the login grace period expires as a UNIX timestamp. Default is 12 hours past the cookie's expiration time. |
$expiration | int | The time when the authentication cookie expires as a UNIX timestamp. Default is 14 days from now. |
$user_id | int | User ID. |
$scheme | string | Authentication scheme. Values include 'auth' or 'secure_auth'. |
$token | string | User's session token to use for this cookie. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'set_auth_cookie', 'twoja_funkcja', 10, 6 );
function twoja_funkcja($param_1, $param_2, $param_3, $param_4, $param_5, $param_6) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'set_auth_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