我需要检查登录的用户并使用wp_redirect重定向到页面,但是它会多次重定向
我尝试过使用template_redirect和init钩子
add_action( 'template_redirect', 'redirect_to_specific_page' );
function redirect_to_specific_page() {
if ( !is_user_logged_in() ) {
wp_redirect( 'http://localhost/lawyer_portal/login/' );
exit;
}
}
答案 0 :(得分:0)
尝试以下代码片段-
add_action( 'template_redirect', 'redirect_to_specific_page' );
function redirect_to_specific_page() {
// Assume that url login slug is a page
if ( !is_user_logged_in() && !is_page( 'login' ) ) {
wp_redirect( 'http://localhost/lawyer_portal/login/' );
exit;
}
}