Skip to content

Instantly share code, notes, and snippets.

@alexdeborba
Created September 4, 2024 23:46
Show Gist options
  • Save alexdeborba/30dc742a2ac4124fd3c098c0404ea388 to your computer and use it in GitHub Desktop.
Save alexdeborba/30dc742a2ac4124fd3c098c0404ea388 to your computer and use it in GitHub Desktop.
Redirect to homepage after logout
// Redirect to homepage after logout
function custom_logout_redirect() {
wp_redirect(home_url());
exit();
}
add_action('wp_logout', 'custom_logout_redirect');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment