WP Redirect gives me Error
-
Hello Everyone,
I was working with some login functionality and if the user is not logged in i want them to be redirected on my landing page. So here’s my code:
function admin_redirect() {
if ( !is_user_logged_in()) {
wp_redirect( home_url(‘/landing-page/’) );
exit;
}
}
add_action(‘get_header’, ‘admin_redirect’);When I try to access the site it gives me an error: The page isn’t redirecting properly. Any ideas why is this happening? Thanks in advance!
- The topic ‘WP Redirect gives me Error’ is closed to new replies.