Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to Exclude a Group From the Groups Loop

PHP docs are fairly clear, but try this:

`$special = array(“General”, “Community”);
if (in_array( bp_get_group_name(), $special) ) : ?>

Do stuff if group name is in array

Otherwise do some different stuff

`

Skip to toolbar