To redirect a user back to the front page (or any other page) after they log out, use the following.
Copy and paste the WordPress function into your theme's functions.php
file or, if you sensibly have one installed, your custom functions plugin.
1
<?php
2
/*
3
Redirect to front page on logging out
4
http://www.beliefmedia.com/code/wp-snippets/redirect-logout
5
*/
6
7
8
9
exit();
10
}
11