Logout redirect from WP admin bar (may be useful)
-
Hi all,
If you logout from WP admin bar it takes you to the WP-Login screen by default (at least mine does). If you want it to return you to your website homepage put this in functions.php or bp-custom.php (depending on how you are organising your custom code):
function go_home(){ wp_redirect( home_url() ); exit(); } add_action('wp_logout','go_home');
Just thought it may be of use to someone 🙂
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Logout redirect from WP admin bar (may be useful)’ is closed to new replies.