• bazaa

    (@bazaa)


    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.

Viewing 1 replies (of 1 total)
  • 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.

Viewing 1 replies (of 1 total)
  • The topic ‘Posts visible only to subscribers’ is closed to new replies.