Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




wp_authenticate_cookie [ WordPress Function ]

wp_authenticate_cookie ( $user, $username, $password )
Defined at:



Authenticate the user using the WordPress auth cookie.

Source


<?php
function wp_authenticate_cookie($user$username$password) {
    if ( 
is_a($user'WP_User') ) { return $user; }

    if ( empty(
$username) && empty($password) ) {
        
$user_id wp_validate_auth_cookie();
        if ( 
$user_id )
            return new 
WP_User($user_id);

        global 
$auth_secure_cookie;

        if ( 
$auth_secure_cookie )
            
$auth_cookie SECURE_AUTH_COOKIE;
        else
            
$auth_cookie AUTH_COOKIE;

        if ( !empty(
$_COOKIE[$auth_cookie]) )
            return new 
WP_Error('expired_session'__('Please log in again.'));

        
// If the cookie is not set, be silent.
    
}

    return 
$user;
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

Gebruikersdiscussies [ wordpress.org ]

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics