i think you are getting into the deep .
better use the following code.
open your theme and open the single.php file and
add the following if statement to allow registered users to see your posts,
if(is_user_logged_in() ) {
// your single content goes here.
} else {
// prevented access. login to see the content.
}
I think it will be your necessary one.