現在我知道,如果我想在用戶重定向記錄到當前網頁,他們已經在我應該使用此過濾器如何有條件地重定向登錄用戶?
function pro_redirect_to_request($redirect_to, $request, $user){
// instead of using $redirect_to we're redirecting back to $request
return $request;
}
add_filter('login_redirect', 'pro_redirect_to_request', 10, 3);
,但現在我有我想重定向誰是用戶自定義登錄頁面從這個頁面登錄到一個自定義頁面,我的意思是說,該主頁。所以我做了這些編輯過濾器,但它不起作用。
function pro_redirect_to_request($redirect_to, $request, $user){
// instead of using $redirect_to we're redirecting back to $request
if ($request == 'http://prosentra.com/login'){
wp_redirect(home_url(""));
exit();
}else{
return $request;
}
}
add_filter('login_redirect', 'pro_redirect_to_request', 10, 3);
這裏我要問,如果用戶請求從登錄頁面等於該網址「http://prosentra.com/login」然後重定向我的主頁,如果不是我重定向到當前頁面。 我應該做些什麼修改?
謝謝,不過比較遺憾的是沒有工作 –
@MohamedOmar檢查我的編輯,如果它不是爲你工作。也許你做錯了什麼。 –