I usually use a redirect in my header to redirect the home to a landing page during site dev but it's not working in choices.
if( !is_user_logged_in() ) {
wp_redirect('coming-soon');
exit;
}
I get the redirect but the page is blank. Is there a better place to put this while I'm building the site? Is it because of the redirect in the avia_default_dynamics function?














