Created
March 30, 2022 07:15
-
-
Save jb510/5a1ae406ef5e3bf11a5a75716cac93d9 to your computer and use it in GitHub Desktop.
Revisions
-
jb510 created this gist
Mar 30, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ <?php add_filter( 'members_default_post_roles', 's9_members_force_content_protection' ); function s9_members_force_content_protection( $roles ) { if ( 'minutes' === get_post_type( get_the_ID() ) ) { $roles = array( 'board_member', 'home_owner' ); } return $roles; }