Logout redirect doesn't work when plugin is active
-
Hi,
I’ve activated a simple function to redirect users after logout:
add_action(‘wp_logout’,’auto_redirect_after_logout’);
function auto_redirect_after_logout(){
wp_redirect( home_url() );
exit();
}
It works only if your plugin is deactivated.
What I can do to have it working?
Thx
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Logout redirect doesn't work when plugin is active’ is closed to new replies.