Forums
-
- Forum
- Posts
-
- Installation
- 28,547
- Troubleshooting
- 62,891
- Themes
- 10,444
- Plugins
- 15,400
- Requests & Feedback
- 14,995
- Showcase
- 3,259
-
This is what i do to solve the problem:
function wpbb_add_user_role_rk($user_id) {
$user = new WP_User($user_id);
$user->set_role(get_option('default_role'));
}
add_action( ‘bb_new_user’, ‘wpbb_add_user_role_rk’);