secure_signon_cookie
Filters whether to use a secure sign-on cookie.
Usage
add_filter( 'secure_signon_cookie', 'wp_kama_secure_signon_cookie_filter', 10, 2 );
/**
* Function for `secure_signon_cookie` filter-hook.
*
* @param bool $secure_cookie Whether to use a secure sign-on cookie.
* @param array $credentials Array of entered sign-on data.
*
* @return bool
*/
function wp_kama_secure_signon_cookie_filter( $secure_cookie, $credentials ){
// filter...
return $secure_cookie;
}
- $secure_cookie(true|false)
- Whether to use a secure sign-on cookie.
- $credentials(array)
Array of entered sign-on data.
-
user_login(string)
Username. -
user_password(string)
Password entered. - remember(true|false)
Whether to 'remember' the user. Increases the time that the cookie will be kept.
Default: false
-
Changelog
| Since 3.1.0 | Introduced. |
Where the hook is called
wp-includes/user.php 102
$secure_cookie = apply_filters( 'secure_signon_cookie', $secure_cookie, $credentials );