Redirect user after first login in wordpress?

前端 未结 2 1990
野趣味
野趣味 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);
    
    0 讨论(0)
  • 2021-02-06 09:29

    Redirecting users on first login in WordPress: Cookie-based solution & User meta table based solution

    0 讨论(0)
提交回复
热议问题