dougang7521 2016-09-15 03:34
浏览 32
已采纳

如何通过编码在Wordpress中重定向页面

I am using WordPress twentysixteen theme. There I have created a page template. In that I have created a login form. I want to redirect a user to the next page after successful login.

I tried:

header('Location: http://website.com/my-page/');
wp_redirect(get_page_by_title('My Page'));

saying error

headers already sent

  • 写回答

3条回答 默认 最新

  • dox90448 2016-09-20 06:56
    关注

    You can workarond this problem by redirecting page via javascript

    echo '<script type="text/javascript">window.location = "/my-page/"</script>';
    exit;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?