답변:
wp_set_auth_cookie()
비밀번호를 몰라도 사용자를 로그인합니다.
is_user_logged_in()
가 작동하지 않는 것 같습니다. 쿠키와 다른 것을보고 있는지 알고 있습니까?
wp_set_current_user
로그인 하기 전에 시도하십시오 .
wp_set_auth_cookie()
로그인 기능에 추가 했습니다. 나는 그것을 다시 생각할 필요가 있다고 생각한다. wp_set_current_user를 찾아보고 다시 알려 드리겠습니다. 도와 주셔서 감사합니다!
다음 코드는 비밀번호없이 자동 로그인 작업을 수행합니다!
// Automatic login //
$username = "Admin";
$user = get_user_by('login', $username );
// Redirect URL //
if ( !is_wp_error( $user ) )
{
wp_clear_auth_cookie();
wp_set_current_user ( $user->ID );
wp_set_auth_cookie ( $user->ID );
$redirect_to = user_admin_url();
wp_safe_redirect( $redirect_to );
exit();
}
get_user_by()
실패시 false를 반환하므로 WP_Error 객체 대신 false를 확인해야합니다.
나는 다른 해결책 발견 여기에 (... 제 생각에 적어도) 더 나은 접근 방식을 사용합니다. 쿠키를 설정할 필요가 없으며 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
를 확인하여 로그인했는지 확인하십시오.
내 의견으로는 훌륭하고 깨끗한 코드 조각!
$credentials
이 비어 있는지 확인합니다 . 배열이 비어 있지 않으면 (내 대답의 경우) 배열의 값이 사용자를 인증하는 데 사용됩니다.
Mike, Paul 및 Sjoerd 외에도 :
login.php
리디렉션 을 더 잘 처리하려면
//---------------------Automatic login--------------------
if(!is_user_logged_in()){
$username = "user1";
if($user=get_user_by('login',$username)){
clean_user_cache($user->ID);
wp_clear_auth_cookie();
wp_set_current_user( $user->ID );
wp_set_auth_cookie( $user->ID , true, false);
update_user_caches($user);
if(is_user_logged_in()){
$redirect_to = user_admin_url();
wp_safe_redirect( $redirect_to );
exit;
}
}
}
elseif('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'] == wp_login_url()){
$redirect_to = user_admin_url();
wp_safe_redirect( $redirect_to );
exit;
}
wp-config.php
바로 뒤에 배치
require_once(ABSPATH . 'wp-settings.php');
참고로
위의 솔루션을 기반으로 사용자 데이터와 쿠키 세션을 동기화하여 사용자가 한 워드 프레스에서 다른 워드 프레스로 로그인 할 수 있도록 플러그인을 출시했습니다.