Skip to content

Instantly share code, notes, and snippets.

@infn8
Created December 9, 2014 21:26
Show Gist options
  • Save infn8/ceee9d3593b38fb35e71 to your computer and use it in GitHub Desktop.
Save infn8/ceee9d3593b38fb35e71 to your computer and use it in GitHub Desktop.
Wordpress Force Login
<?php
if (!is_user_logged_in()) {
wp_login_form();
wp_die('you need to login' );
}
?>
@infn8
Copy link
Author

infn8 commented Dec 9, 2014

Add this to your header.php after:

<body <?php body_class(); ?>>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment