Skip to content

Instantly share code, notes, and snippets.

@lunaroja
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save lunaroja/26270646bd39921b37a4 to your computer and use it in GitHub Desktop.

Select an option

Save lunaroja/26270646bd39921b37a4 to your computer and use it in GitHub Desktop.
WP: Temp redirect non logged in users to other URL.
<?php
if (
!in_array($GLOBALS['pagenow'], array('wp-login.php', 'wp-register.php'))
&& !is_admin()
&& !is_user_logged_in()
) {
wp_redirect( 'http://other-temp-site.com/', 302 ); exit;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment