Is there any way to make posts only visible to subscribers? The private option will only make it visible for users with higher levels, and I didn't quite want that =|
Sorry if this question has been already asked, I searched and didn't find anything.
I just needed to solve this problem, and did it by adding the following lines to my theme's functions.php:
$subRole = get_role( 'subscriber' );
$subRole->add_cap( 'read_private_pages' );
Not as flexible as getting a plugin like Role Manager or something, but this was all I wanted, and it seems to work well.