Answers for "get userlog in wordpress"

PHP
0

wordpress login user programmatically

<?php

function auto_login( $user ) {
    $username   = $user;
    // log in automatically
    if ( !is_user_logged_in() ) {
        $user = get_userdatabylogin( $username );
        $user_id = $user->ID;
        wp_set_current_user( $user_id, $user_login );
        wp_set_auth_cookie( $user_id );
        do_action( 'wp_login', $user_login );
    }     
}
?>
Posted by: Guest on December-24-2020
0

logout all the users from site wordpress

Generate new salt and key for wordpress and replace with the old one which will
forcefully logout all the logged in users.
https://api.wordpress.org/secret-key/1.1/salt/

https://www.greengeeks.in/tutorials/article/completely-force-logout-users-wordpress/#:~:text=Using%20the%20WPForce%20Logout%20Plugin&text=Then%20in%20the%20%E2%80%9CBulk%20Actions,%E2%80%9CLogout%20All%20Users%E2%80%9D%20button.
Posted by: Guest on March-31-2021

Browse Popular Code Answers by Language