Skip to content

Instantly share code, notes, and snippets.

@wurwal
Created October 23, 2025 09:03
Show Gist options
  • Select an option

  • Save wurwal/97340f85232485c24b1c343f69ed82d5 to your computer and use it in GitHub Desktop.

Select an option

Save wurwal/97340f85232485c24b1c343f69ed82d5 to your computer and use it in GitHub Desktop.
WP holding page redirector
function redirect_all_to_holding() {
if ( ! is_user_logged_in() && ! is_page('coming-soon') ) {
wp_redirect( home_url('/coming-soon/') );
exit;
}
}
add_action( 'template_redirect', 'redirect_all_to_holding' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment