Skip to content

Instantly share code, notes, and snippets.

@DenisLeblanc
Created April 24, 2014 18:14
Show Gist options
  • Save DenisLeblanc/11264169 to your computer and use it in GitHub Desktop.
Save DenisLeblanc/11264169 to your computer and use it in GitHub Desktop.
Automatically login users with Gravity Forms Registration Addon
<?php
add_action("gform_user_registered", "autologin", 10, 4);
function autologin($user_id, $config, $entry, $password) {
wp_set_auth_cookie($user_id, false, '');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment