Skip to content

Instantly share code, notes, and snippets.

@achilles283
Created August 30, 2013 20:43
Show Gist options
  • Save achilles283/6394098 to your computer and use it in GitHub Desktop.
Save achilles283/6394098 to your computer and use it in GitHub Desktop.
<?php //associating a function to login hook add_action('wp_login', 'set_last_login');   //function for setting the last login function set_last_login($login) {    $user = get_userdatabylogin($login);      //add or update the last login value for logged in user    update_usermeta( $user->ID, 'last_login', current_time('mysql') ); } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment