Skip to content

Instantly share code, notes, and snippets.

@dcavins
Created July 1, 2017 12:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcavins/0f9943c2e2dd506afc58c3b56f8013c8 to your computer and use it in GitHub Desktop.
Save dcavins/0f9943c2e2dd506afc58c3b56f8013c8 to your computer and use it in GitHub Desktop.
Change BP Docs default read setting.
<?php
add_filter( 'bp_docs_get_default_access_options', 'my_change_docs_default_access_levels' );
function my_change_docs_default_access_levels( $defaults ) {
$defaults['read'] = 'loggedin';
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment