Advertisement
verygoodplugins

Untitled

Feb 21st, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. function wpf_update_login_time() {
  2.  
  3.     if( is_user_logged_in() ) {
  4.         update_user_meta( get_current_user_id(), 'last_login', time() );
  5.     }
  6.  
  7. }
  8.  
  9. add_action( 'init', 'wpf_update_login_time' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement