如果你是WordPress主题开发者,这是个很有用的技巧。默认情况下, 用户登出后WordPress会重定向到网站的登录页面,我们可以通过添加下面的代码到当前主题的functions.php模板文件,用户登出后跳转到指定页面或者链接地址。
一、注销后重定向到首页
add_action('wp_logout','auto_redirect_after_logout');
function auto_redirect_after_logout(){
wp_redirect( home_url() );
exit();
}
二、注销后重定向到指定链接
add_action('wp_logout','auto_redirect_external_after_logout');
function auto_redirect_external_after_logout(){
wp_redirect( 'https://www.wpdaxia.com' );
exit();
}