Advertisement
Guest User

Untitled

a guest
Jan 28th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. <?php
  2. function wp_new_user_notification( $user_id, $deprecated = null, $notify = '' ) {
  3. if ( $deprecated !== null ) {
  4. _deprecated_argument( __FUNCTION__, '4.3.1' );
  5. }
  6.  
  7. global $wpdb, $wp_hasher;
  8. $user = get_userdata( $user_id );
  9.  
  10. // The blogname option is escaped with esc_html on the way into the database in sanitize_option
  11. // we want to reverse this for the plain text arena of emails.
  12. $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
  13.  
  14. $message = sprintf(__('New user registration on your site %s:'), $blogname) . "\r\n\r\n";
  15. $message .= sprintf(__('Username: %s'), $user->user_login) . "\r\n\r\n";
  16. $message .= sprintf(__('Email: %s'), $user->user_email) . "\r\n";
  17.  
  18. @wp_mail(get_option('admin_email'), sprintf(__('[%s] New User Registration'), $blogname), $message);
  19.  
  20. // `$deprecated was pre-4.3 `$plaintext_pass`. An empty `$plaintext_pass` didn't sent a user notifcation.
  21. if ( 'admin' === $notify || ( empty( $deprecated ) && empty( $notify ) ) ) {
  22. return;
  23. }
  24.  
  25. // Generate something random for a password reset key.
  26. $key = wp_generate_password( 20, false );
  27.  
  28. /** This action is documented in wp-login.php */
  29. do_action( 'retrieve_password_key', $user->user_login, $key );
  30.  
  31. // Now insert the key, hashed, into the DB.
  32. if ( empty( $wp_hasher ) ) {
  33. require_once ABSPATH . WPINC . '/class-phpass.php';
  34. $wp_hasher = new PasswordHash( 8, true );
  35. }
  36. $hashed = time() . ':' . $wp_hasher->HashPassword( $key );
  37. $wpdb->update( $wpdb->users, array( 'user_activation_key' => $hashed ), array( 'user_login' => $user->user_login ) );
  38.  
  39. $message = sprintf(__('Username: %s'), $user->user_login) . "\r\n\r\n";
  40. $message .= __('To set your password, visit the following address:') . "\r\n\r\n";
  41. $message .= network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user->user_login), 'login') . "\r\n\r\n";
  42.  
  43. $message .= wp_login_url() . "\r\n";
  44.  
  45. wp_mail($user->user_email, sprintf(__('[%s] Your username and password info'), $blogname), $message);
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement