Skip to content

Instantly share code, notes, and snippets.

@ideag
Created April 4, 2014 10:07
Show Gist options
  • Select an option

  • Save ideag/9971674 to your computer and use it in GitHub Desktop.

Select an option

Save ideag/9971674 to your computer and use it in GitHub Desktop.
require visitors to login on WordPress site
<?php
if (!is_user_logged_in()) {
wp_redirect(wp_login_url());
exit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment