Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spivurno/b6d52f0d5d7692ee7ea5 to your computer and use it in GitHub Desktop.
Save spivurno/b6d52f0d5d7692ee7ea5 to your computer and use it in GitHub Desktop.
Gravity Perks // GP Auto Login // Redirect to Custom URL on Auto Login
/**
* Gravity Perks // GP Auto Login // Redirect to Custom URL on Auto Login
*/
add_filter( 'gpal_auto_login_on_redirect_redirect_url', function( $url, $user_id ) {
$url = 'http://mysite.com/my-custom-url/';
return $url;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment