Skip to content

Instantly share code, notes, and snippets.

@zaerl
Created November 16, 2012 09:49
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save zaerl/4086011 to your computer and use it in GitHub Desktop.
Save zaerl/4086011 to your computer and use it in GitHub Desktop.
Custom bbPress role names
function my_custom_roles( $role, $user_id, $user_role ) {
if( $role == 'Key Master' )
return 'Site Owner';
return $role;
}
add_filter( 'bbp_get_user_display_role', 'my_custom_roles', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment