WordPress and buddypress programming

Make private posts and pages available to subscribers

Viewing 0 reply threads
  • Author
    Posts
    • #8817
      test
      Participant
      @mkmcsttest
      // Make private posts and pages available to subscribers
      function subs_read_private_content(){
          $subRole = get_role( 'subscriber' );
          $subRole->add_cap( 'read_private_posts' );
          $subRole->add_cap( 'read_private_pages' );
      }
      add_action( 'init', 'subs_read_private_content' );
Viewing 0 reply threads
  • You must be logged in to reply to this topic.