Skip to content

Instantly share code, notes, and snippets.

@r-a-y
Created November 25, 2012 21:03
Show Gist options
  • Save r-a-y/4145322 to your computer and use it in GitHub Desktop.
Save r-a-y/4145322 to your computer and use it in GitHub Desktop.
BuddyPress - Remove group activity post form
/**
* Remove the group activity post form
*/
add_action( 'bp_before_group_activity_post_form', create_function( '', 'ob_start();' ), 9999 );
add_action( 'bp_after_group_activity_post_form', create_function( '', 'ob_end_clean();' ), 0 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment