我使用此代码注销。它除了在移动设备上工作外,还可以打开一个新窗口。如何在确认后注销并重定向到同一窗口?
add_action(\'check_admin_referer\', \'logout_without_confirm\', 10, 2);
function logout_without_confirm($action, $result)
{
/**
* Allow logout without confirmation
*/
if ($action == "log-out" && !isset($_GET[\'_wpnonce\'])) {
$redirect_to = isset($_REQUEST[\'redirect_to\']) ? $_REQUEST[\'redirect_to\'] : \'https://www.example.com\';
$location = str_replace(\'&\', \'&\', wp_logout_url($redirect_to));
header("Location: $location");
die;
}
}