Skip to content

Instantly share code, notes, and snippets.

@mestrewp
Created May 28, 2012 18:29
Show Gist options
  • Save mestrewp/2820511 to your computer and use it in GitHub Desktop.
Save mestrewp/2820511 to your computer and use it in GitHub Desktop.
WordPress: Redirect User at Login
<?php
add_filter('login_redirect', 'change_login_redirect', 10, 3 );
function change_login_redirect( $redirect_to, $request, $user) {
/*
using $user, you can change this on a per-user basis if you want
*/
// options.php is just a sample, change as needed
return admin_url('options.php');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment