我正在使用会员插件,我创建了4个成员(free
,silver
,gold
,platinum
)。
所有用户目前都会重定向到同一页面,但我想将每个用户重定向到他们自己的页面(例如,免费用户应该重定向到免费页面,黄金用户重定向到黄金页面等。)
有可能吗?如果是的话,我怎么能这样做?
答案 0 :(得分:1)
您可以设置每个类型的重定向网址,并且该网址会在wp-login.php页面中传递,以便在您可以重定向的特定网页上显示。
答案 1 :(得分:0)
使用" 登录重定向"挂钩以在登录后重定向用户。 codex reference
或者您可以使用" wp login"挂钩以在登录后重定向用户。
function your_function_name($user_login, $user) {
// code to check membership of an user.
// use wp_redirect to redirect conditionally to specific pages..
}
add_action('wp_login', 'your_function_name', 10, 2);