last login date time in wordpress

Solutions on MaxInterview for last login date time in wordpress by the best coders in the world

showing results for - "last login date time in wordpress"
Nikki
03 Oct 2020
1#Set
2function user_last_login( $user_login, $user ) {
3    update_user_meta( $user->ID, 'last_login', time() );
4}
5add_action( 'wp_login', 'user_last_login', 10, 2 );
6
7#get
8echo get_user_meta( $user->ID, 'last_login' , true );