Support

Account

Home Forums General Issues Add Role on registration Reply To: Add Role on registration

  • In the end to add the user role this did work

    add_action( "user_register", function( $user_id ) {
      $selected_radio = $_POST['field_5e44e2456a4a9'];
      $user = new WP_User( $user_id );
      if( $selected_radio == 'bedrijf') {
          $user->set_role('bedrijf');
    
      }
    } );