Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save JarrydLong/a178ea2a5259f85c4301d101c0c0d320 to your computer and use it in GitHub Desktop.

Select an option

Save JarrydLong/a178ea2a5259f85c4301d101c0c0d320 to your computer and use it in GitHub Desktop.
Redirect users after logout WordPress
<?php
/**
* Redirect users to login page after logging out of WordPress.
*/
function my_redirect_after_logout_wp(){
wp_redirect( "/login" );
exit;
}
add_action('wp_logout','my_redirect_after_logout_wp');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment