Give “Subscribers” Access to Private Posts & Pages
|
1 2 3 |
$sub_role = get_role( 'subscriber' ); $sub_role->add_cap( 'read_private_posts' ); $sub_role->add_cap( 'read_private_pages' ); |
Notes:
Anywhere should do for this. I’ve got mine in a hook into the `after_setup_theme` action.
