-
27 Jun
How to get a user last login time in wordpress
Sometimes in our ongoing WordPress projects, Client wants to show user last login time. So we found function get_user_meta() to get it. How to get user last login time in WordPress ? Past this functions in theme functions.php file. Code1: //function for setting the last login
function set_last_login($login) {
$user = get_userdatabylogin($login);- Category :
- Wordpress