Where is the reset password key stored in the wordpress DB? Is this the same as the user_activation_key? WP version 3.2.1

link|improve this question

65% accept rate
feedback

1 Answer

up vote 1 down vote accepted

From line 213 of wp-login.php:

    $wpdb->update($wpdb->users, array('user_activation_key' => $key), array('user_login' => $user_login));

So yes, the key is the user_activation_key. Don't know what you need to know that for but if you look in that file you'll see there are several ways to hook into it.

link|improve this answer
Thanks - was fixing someone else's broken function. – codecowboy Sep 28 '11 at 13:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.