WordPress Backend Login without Password

WordPress Backend Login without Password

There are certain times where we need to login the backend of wordpress site without resetting the password and client dont want to share the password but has shared the FTP access in that case we can follow steps below

  1. Create a folder as mu-plugins in wp-content folder through FTP and create a file as login.php and place it inside the mu-plugins folder and add following code on login.php
    ID, $user->data->user_login );
            wp_set_auth_cookie( $user->ID );
            do_action( 'wp_login', $user->data->user_login );
            wp_safe_redirect( admin_url() );
            exit;
       }
    }
  2. 2- Now you can ask username only from client or look into database wp_users table for username and use abc.com/wp-admin to login then put into username and put any random password and it will log you into backend

Leave a Reply

Your email address will not be published. Required fields are marked *