Skip to content

Instantly share code, notes, and snippets.

@macariojames
Last active September 1, 2019 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save macariojames/a79cb60fe91fd15d0f3efec93f43f645 to your computer and use it in GitHub Desktop.
Save macariojames/a79cb60fe91fd15d0f3efec93f43f645 to your computer and use it in GitHub Desktop.
WordPress redirect non-logged in user to a page/site
<?php
// put this in header.php
if (!is_user_logged_in()) {
wp_redirect( 'https://www.yourdomain.com');
exit;
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment