Force Users To Login Before Reading Posts in WordPress
If your blog has some restricted area that you don’t want to publicize to all visitors, just for members only, then you might want to force users to login before reading these posts. Fortunately, WordPress has a built-in function which can help us to do that.

The function is auth_redirect(), this is how it works: When it is called from a page, it checks to see if the user viewing the page is logged in. If the user is not logged in, they are redirected to the login page. The user is redirected in such a way that, upon logging in, they will be sent directly to the page they were originally trying to access.
By using this function, we can implement our code that check if post is restricted or not, and redirect users to login page if needed.
Just paste the following code into your theme’s functions.php file:
function my_force_login() {
global $post;if (!is_single()) return;
$ids = array(188, 185, 171); // array of post IDs that force login to read
if (in_array((int)$post->ID, $ids) && !is_user_logged_in()) {
auth_redirect();
}
}
Change the array of post IDs to fit your requirement. After that, open the header.php file and put the following code in the very top:
<?php my_force_login(); ?>
The code is simple, but you can expand it with more options like: require login in some specific categories, make an option page for easy input post IDs, etc.
The function auth_redirect() is available since WordPress 1.5.
Tuan Anh (aka. Rilwis) is a 25 years old blogger and web developer from Vietnam. He is interested in PHP, MySQL as well as Web 2.0 technologies (CSS, Javascript, Ajax). He loves WordPress and all related to it. Follow Rilwis on Twitter to stay update with him. Rilwis’s website: Deluxe Blog Tips
Comments
12 Responses to “Force Users To Login Before Reading Posts in WordPress”Share Your Opinions
Tell us what you're thinking...
and if you want a pic to show with your comment, then get gravatar!
Please make sure that you have read our Comment Policy.











Nice. What I want to ask is it possible to show to a guest user a blank post with a link like Please login to view. Then on the same page a pop up comes where the user logs in to WordPress and immediately the post shows up (using a bit of Ajax). This would be very handy.
Very certain that it is possible, but not through this route because the auth_redirect feature actually redirects you to the login page period. No page in between.
Thanks for the share. can it would be possible to put this code on thesis theme.
You should be able to use it thesis as well because you are not really editing the theme here. You are adding a function in your custom functions.php file and then calling the function in your header hook for thesis.
thanks for it i will do it on first testing site and then implement it on real site
Oh yeah. Everyone will get that
Not sure I understand how this has a different effect than setting the visibility of a page to “password protected” on the “Add new page/Edit page” screen in WordPress admin. Can you explain why this function rather than simply selecting a checkbox?
Many reasons. One password can get out of control. People might share it which will ruin the purpose of that page. This is so only registered members see the post. You can charge membership fee for your exclusive content using this trick and much more.
This is an excellent script, thank you very much for sharing! Is there a way, instead of specific posts, to have the user log in to a specific category? Could you explain, if possible, how this code can be expanded to incorporate categories?
Thank you so much..
Amanda
Get a membership plugin, such as Wishlist or Amember.
How would I make it category based instead of using the array of posts, it would make it so that I wouldnt have to update the array every time I wanted to add a new post that I want to be behind the login.
I could just apply a category to the post that makes it force a login.
thoughts?
You would have to modify the codes slightly from if is_single to if_is_category… You can also use a membership plugin for this (a recommended option).