WordPress – Give “subscribers” access to private posts & pages
Anywhere should do for this. I’ve got mine in a hook into the ‘after_setup_theme’ action.
|
1 2 3 4 |
<code>$sub_role = get_role( 'subscriber' ); $sub_role->add_cap( 'read_private_posts' ); $sub_role->add_cap( 'read_private_pages' ); </code> |


