Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created February 1, 2019 00:22
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 KaineLabs/d6b730919fc6bf5d60696570259d55dc to your computer and use it in GitHub Desktop.
Save KaineLabs/d6b730919fc6bf5d60696570259d55dc to your computer and use it in GitHub Desktop.
Set Default Group Status
<?php
/**
* Set Default Group Status
*/
function yzc_set_default_group_status( $status ) {
return 'private';
}
add_filter( 'bp_get_new_group_status', 'yzc_set_default_group_status' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment