wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_authenticate_cookie › WordPress Function
Seit2.8.0
Veraltetn/v
› wp_authenticate_cookie ( $user, $username, $password )
Parameter: (3) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Authenticates the user using the WordPress auth cookie.
Ähnliche Funktionen: wp_authenticate, wp_authenticate_spam_check, wp_set_auth_cookie, wp_clear_auth_cookie, wp_parse_auth_cookie
Quellcode
function wp_authenticate_cookie( $user, $username, $password ) { global $auth_secure_cookie; if ( $user instanceof WP_User ) { return $user; } if ( empty( $username ) && empty( $password ) ) { $user_id = wp_validate_auth_cookie(); if ( $user_id ) { return new WP_User( $user_id ); } 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; }