现在用户注册后我的wordpress网站被重定向到我的帐户页面(我使用woocommerce)。
我希望hime在注册后自动注销。
因为我想先批准它。
这是代码:
if (is_user_logged_in()) {
$nua = pw_new_user_approve();
$status = $nua->get_user_status(get_current_user_id());
if ($status === 'pending') {?>
HERE IS THE FUNCTION TO LOGOUT AUTOMATICALLY!
<?php
}
}
请帮忙吗?
答案 0 :(得分:1)
<?php
if (is_user_logged_in()) {
$nua = pw_new_user_approve();
$status = $nua->get_user_status(get_current_user_id());
if ($status === 'pending') {
$redirect = 'sitepath';
wp_logout_url($redirect);
}
}
?>
答案 1 :(得分:0)
试试这个
if (is_user_logged_in()) {
$nua = pw_new_user_approve();
$status = $nua->get_user_status(get_current_user_id());
if ($status === 'pending') {
wp_logout();
}
}
答案 2 :(得分:0)
请试试这个
<?php echo wp_logout_url( $_SERVER['REQUEST_URI'] ); ?>