Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Determine if its a member or an admin

try

if ( bb_current_user_can( 'administrate' ) ) {

// do something

} else {

// do something else

}

If you look in bb-includes/capabilities.php, you’ll see a list of available capabilities you an check for, if you want more fine grained control than the above.

Skip to toolbar