默认情况下, 用户登出后WordPress会重定向到网站的登录页面,我们可以通过添加下面的代码到当前主题的functions.php模板文件,用户登出后跳转到指定页面或者链接地址。
[section label=”重定向到首页” anchor=”souye”]
一、注销后重定向到首页
add_action('wp_logout','auto_redirect_after_logout');
function auto_redirect_after_logout(){
wp_redirect( home_url() );
exit();
}
[section label=”重定向到指定链接” anchor=”lianjie”]
二、注销后重定向到指定链接
add_action('wp_logout','auto_redirect_external_after_logout');
function auto_redirect_external_after_logout(){
wp_redirect( 'http://iiidea.cn' );
exit();
}