当某人(在管理区(/wp Admin/)后端有访问权限)已经登录,并且他想注销(默认WordPress注销),但仅从该区域内注销,如何将其重定向到主页?
像这样的
add_action(\'wp_logout\',\'redirect_after_logout\');
function redirect_after_logout(){
if(/*logged in user is inside the admin backend area and wants to log out from there */) {
wp_redirect(home_url());
exit();
}
}