Redirect user after first login in wordpress?

前端 未结 2 1991
野趣味
野趣味 2021-02-06 08:51

This code checks if a user is logging in for the first time, that is after registration. I want to redirect him to a custom page if so. Otherwise, redirect him to the homepage o

2条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-06 09:26

    You need to adjust your filter call like so;

    // filter name, callback, priority, accepted args
    add_filter('login_redirect', 'mylogin_redirect', 10, 3);
    

提交回复
热议问题