Skip to content

Instantly share code, notes, and snippets.

@trevorgreenleaf
Created April 4, 2017 00:51
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 trevorgreenleaf/a127088eefb39a90501b37a6153fcd51 to your computer and use it in GitHub Desktop.
Save trevorgreenleaf/a127088eefb39a90501b37a6153fcd51 to your computer and use it in GitHub Desktop.
Wordpress Redirect on Login
function admin_default_page() {
return '/new-dashboard-url';
}
add_filter('login_redirect', 'admin_default_page');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment