Skip to content

Instantly share code, notes, and snippets.

@codeiscode-dev
Last active October 3, 2018 22:07
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 codeiscode-dev/5c00cc693f97496fe9b9f73d35825da8 to your computer and use it in GitHub Desktop.
Save codeiscode-dev/5c00cc693f97496fe9b9f73d35825da8 to your computer and use it in GitHub Desktop.
Redirect upon Login / Logout
add_action('wp_logout','auto_redirect_external_after_logout');
function auto_redirect_external_after_logout(){
wp_redirect( 'https://www.growlearnteach.com' );
exit();
}
add_action('wp_logout','auto_redirect_after_logout');
function auto_redirect_after_logout(){
wp_redirect( home_url() );
exit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment