BBPress private topics by default

bbpress forums can be marked public (accessible to all) private(filters private forums from view when the user does not have appropriate role) and hidden (Make selected forums completely hidden except to certain members or roles) which can solve your problem. Mark a forum private or hidden according to your requirement and using your members plugin … Read more

Private member page

You can do it without plugins, you just have to allow subscribers to see Private posts and pages, depending on what you want, so you have to put this code in your functions.php $subRole = get_role( ‘subscriber’ ); $subRole->add_cap( ‘read_private_posts’ ); $subRole->add_cap( ‘read_private_pages’ ); And then simply create a private post or page and it … Read more