Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to display the poster’s user role in forums for that specific group


r-a-y
Keymaster

@r-a-y

Check out /buddypress/bp-groups/bp-groups-templatetags.php.

In particular, here are the conditional functions you’re looking for:

`bp_group_is_admin(); // will return true if the user is a group admin

bp_group_is_mod(); // will return true if the user is a group mod`

Use in a conditional statement and you’re good to go!

eg.

`if ( bp_group_is_mod() ) echo ‘Group Moderator’;`

Skip to toolbar