Advertisement
chrishajer

Auto-login user after registering with User Registration

Dec 10th, 2012
380
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2. // http://www.gravityhelp.com/forums/topic/form-direct-to-private-page-with-auto-login#post-97328
  3. add_action('gform_user_registered', 'gf_autologin', 10, 4);
  4. function gf_autologin($user_id, $config, $entry, $password) {
  5.     wp_set_auth_cookie($user_id, false, '');
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement