मुझे यहां एक और समाधान मिला है जो एक बेहतर दृष्टिकोण (कम से कम मेरी राय में ...) का उपयोग करता है। कोई कुकी सेट करने की आवश्यकता नहीं है, यह Wordpress API का उपयोग करता है:
/**
* Programmatically logs a user in
*
* @param string $username
* @return bool True if the login was successful; false if it wasn't
*/
function programmatic_login( $username ) {
if ( is_user_logged_in() ) {
wp_logout();
}
add_filter( 'authenticate', 'allow_programmatic_login', 10, 3 ); // hook in earlier than other callbacks to short-circuit them
$user = wp_signon( array( 'user_login' => $username ) );
remove_filter( 'authenticate', 'allow_programmatic_login', 10, 3 );
if ( is_a( $user, 'WP_User' ) ) {
wp_set_current_user( $user->ID, $user->user_login );
if ( is_user_logged_in() ) {
return true;
}
}
return false;
}
/**
* An 'authenticate' filter callback that authenticates the user using only the username.
*
* To avoid potential security vulnerabilities, this should only be used in the context of a programmatic login,
* and unhooked immediately after it fires.
*
* @param WP_User $user
* @param string $username
* @param string $password
* @return bool|WP_User a WP_User object if the username matched an existing user, or false if it didn't
*/
function allow_programmatic_login( $user, $username, $password ) {
return get_user_by( 'login', $username );
}
मुझे लगता है कि कोड स्वयं व्याख्यात्मक है:
फ़िल्टर दिए गए उपयोगकर्ता नाम के लिए WP_User ऑब्जेक्ट को खोजता है और उसे वापस करता है। wp_set_current_user
WP_User ऑब्जेक्ट के साथ फ़ंक्शन के लिए कॉल द्वारा लौटाया गया wp_signon
, is_user_logged_in
यह सुनिश्चित करने के लिए फ़ंक्शन के साथ एक चेक कि आपके लॉग इन हैं, और यह है!
मेरी राय में कोड का एक अच्छा और साफ टुकड़ा!