Skip to content

Instantly share code, notes, and snippets.

@dhirenpatel22
Created June 22, 2020 18:18
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 dhirenpatel22/8b2e7e8863bd33af8d390e46a33ba298 to your computer and use it in GitHub Desktop.
Save dhirenpatel22/8b2e7e8863bd33af8d390e46a33ba298 to your computer and use it in GitHub Desktop.
After registration, logout the user and redirect to home page
function custom_registration_redirect() {
wp_logout();
return home_url('/');
}
add_action('woocommerce_registration_redirect', 'custom_registration_redirect', 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment