WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about secure_signon_cookie

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-includes/user.php apply_filters 88 /**
* Filters whether to use a secure sign-on cookie.
*
* @since 3.1.0
*
* @param bool $secure_cookie Whether to use a secure sign-on cookie.
* @param array $credentials {
* Array of entered sign-on data.
*
* @type string $user_login Username.
* @type string $user_password Password entered.
* @type bool $remember Whether to 'remember' the user. Increases the time
* that the cookie will be kept. Default false.
* }
*/

Hook Parameters

Parameter Type Name Description
bool $secure_cookie Whether to use a secure sign-on cookie.
array $credential s {