secure_signon_cookie filter-hookWP 3.1.0

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_signon()
secure_signon_cookie
wp-includes/user.php 99
$secure_cookie = apply_filters( 'secure_signon_cookie', $secure_cookie, $credentials );

Where the hook is used in WordPress

Usage not found.