Advertisement
maryfbbc

Untitled

Sep 26th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. //automatically log user in after activation
  2. function auto_login_user( $user_id, $user_config, $entry, $password ) {
  3. $user = get_userdata( $user_id );
  4. $user_login = $user->user_login;
  5. $user_password = $password;
  6.  
  7. wp_signon( array(
  8. 'user_login' => $user_login,
  9. 'user_password' => $user_password,
  10. 'remember' => false
  11. ) );
  12. }
  13. add_action('gform_activate_user', 'auto_login_user', 10, 4);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement