Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: password_reset

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
3252 function reset_password( $user, $new_pass ) {
3253      /**
3254       * Fires before the user's password is reset.
3255       *
3256       * @since 1.5.0
3257       *
3258       * @param WP_User $user     The user.
3259       * @param string  $new_pass New user password.
3260       */
3261      do_action( 'password_reset', $user, $new_pass );
3262
3263      wp_set_password( $new_pass, $user->ID );
3264      update_user_meta( $user->ID, 'default_password_nag', false );
3265
3266      /**
3267       * Fires after the user's password is reset.
3268       *
3269       * @since 4.4.0
3270       *