首页建站WordPress 登录/登出(注销)重定向到网站页面

WordPress 登录/登出(注销)重定向到网站页面

-

默认情况下, 用户登出后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();
    }
xyz168
xyz168
我乃芸芸众生自食其力草根一介,喜欢!拜托支持下,不喜欢!欢迎吐槽,同时欢迎你加入一起学习!一起进步!

热门文章

最新资源

最多评论