Skip to content

Instantly share code, notes, and snippets.

@sbrajesh
Created April 24, 2015 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sbrajesh/8c6b001dad1983551dac to your computer and use it in GitHub Desktop.
Save sbrajesh/8c6b001dad1983551dac to your computer and use it in GitHub Desktop.
Friends only default privacy
add_filter( 'bpdmp_default_settings', 'bd_friends_only_defult_message_privacy' );
function bd_friends_only_defult_message_privacy( $settings ) {
$settings['privacy_type'] = 'friends_only';
return $settings;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment