douduxia1551 2013-09-04 09:20
浏览 76
已采纳

无法在wp-admin页面上重定向

I m facing a problem while implementing my captcha code on the wp-login.php. I want to redirect on wp-admin page of my website when the captcha code maches. Is there a way to redirect on wp-admin page?? my code is :

function captcha_login_check($url) {
    if (isset($_POST["security_check"])) 
    {
        $code = str_decrypt($_POST["security_check"]);
        if (!( $code == $_POST['security_code'] && !empty($code) ))
        {
            wp_clear_auth_cookie();
            return $_SERVER["REQUEST_URI"];
            ?>
            <span style="color:red">
            Error, the Security Code does not match. Please Try Again.
            </span>
            <br>
            <?php
        }
        else
        {
            $url = $_SERVER['HTTP_HOST']."/wp-admin/";
            return $url;
        }
    }
}
  • 写回答

1条回答 默认 最新

  • dongzi5673 2013-09-04 09:29
    关注

    Use like

        else
        {
            $url = $_SERVER['HTTP_HOST']."/wp-admin/";
            header('Location:'.$url);
        }
    

    Also You can use this

        else
        {
            $url = $_SERVER['HTTP_HOST']."/wp-admin/";       
            echo ("<script>location.href='$url'</script>");
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 用hfss做微带贴片阵列天线的时候分析设置有问题
  • ¥50 我撰写的python爬虫爬不了 要爬的网址有反爬机制
  • ¥15 Centos / PETSc / PETGEM
  • ¥15 centos7.9 IPv6端口telnet和端口监控问题
  • ¥120 计算机网络的新校区组网设计
  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作
  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 海浪数据 南海地区海况数据,波浪数据
  • ¥20 软件测试决策法疑问求解答
  • ¥15 win11 23H2删除推荐的项目,支持注册表等