A very small plugin that forces users to login to view blog content.
This is a very small plugin that forces users to login before viewing any content. This is done by checking if the user is logged in, and if not, redirecting them to the login page. Users attempting to view blog content via RSS are also authenticated via HTTP Auth.
Modification: use get_site_url() to redirect to the login page properly when WordPress is located in a subdirectory.
force-login.php
to the /wp-content/plugins/
directoryYes! A variable called $redirect_to (line 33) is currently set to redirect the user to the page they were trying to access. If you changed that line from
$redirect_to = $_SERVER['REQUEST_URI'];
to
$redirect_to = '/';
it would redirect the user to the home page.