Skip to content

Instantly share code, notes, and snippets.

@dhirenpatel22
Created June 22, 2020 18:17
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/592a8be04b4d1791f6344f0d11fa5eba to your computer and use it in GitHub Desktop.
Save dhirenpatel22/592a8be04b4d1791f6344f0d11fa5eba to your computer and use it in GitHub Desktop.
Redirect users to another page after logout in WooCoommerce
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