Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created June 12, 2013 18:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save billerickson/5768106 to your computer and use it in GitHub Desktop.
Save billerickson/5768106 to your computer and use it in GitHub Desktop.
<?php
/**
* Private Posts visible to Subscribers
* Run once
*
*/
function be_private_posts_subscribers() {
$subRole = get_role( 'subscriber' );
$subRole->add_cap( 'read_private_posts' );
}
add_action( 'init', 'be_private_posts_subscribers' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment