登录后跳转到指定页面。文章源自原紫番博客-https://www.yuanzifan.com/54598.html
首先,创建页面,并修改页面的URL,比如将页面命名为Firstpage。文章源自原紫番博客-https://www.yuanzifan.com/54598.html
这里要说清楚:比如你的站点是www.abc.com。那么你设置了一个www.abc.com/firstpage的页面文章源自原紫番博客-https://www.yuanzifan.com/54598.html
然后写入下面的代码(代码写在function.php里面),reture home_url里面的页面名写firstpage。保存后,在wp-admin后台登录,即可跳转到你指定的firstPage页面。文章源自原紫番博客-https://www.yuanzifan.com/54598.html
function login_redirect( $redirect_to, $request, $user ){
return home_url('firstpage');
}
add_filter( 'login_redirect', 'login_redirect', 10, 3 );
文章源自原紫番博客-https://www.yuanzifan.com/54598.html 文章源自原紫番博客-https://www.yuanzifan.com/54598.html
站长微信
扫码添加(注明来意)
Yuanzifan99
原梓番博客公众号
博客内容精选
原梓番博客
评论