Re: Change the default ‘Member’ role title?
No need to change core files. Just make a file called user_types.php with the following code in it and put it in your my-plugins/ folder.
<?php
/*
Plugin Name: Change 'Member' Label
Plugin URI: https://bbpress.org/forums/topic/503
*/
function change_user_type_labels( $label, $type ) {
if ( 'member' == $type )
return 'Kazoo Corps Draftee';
return $label;
}
add_filter( 'get_user_type_label', 'change_user_type_labels', 10, 2 );
?>