Get subscribers to see private posts
-
Hello need to change the subscribed user levels of access of my Divi / WP.
I have added a Divi child theme.
I now need a code snippet to insert into the functions file.
This is what I tried but it failed. Can anyone explain if this can done?/*
* Make Private Posts visible to Subscribers
* Typically only visible to admin or editor
*/
<?php
function?whitespider_private_posts_subscribers(){
?$subRole?= get_role(?‘subscriber’?);
?$subRole->add_cap(?‘read_private_posts’?);
$subRole->add_cap(?‘read_private_pages’?);
}
add_action(?‘init’,?‘ws_private_posts_subscribers’?);
?>Than you for looking, Best Nick
The page I need help with: [log in to see the link]
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Get subscribers to see private posts’ is closed to new replies.