Agrega un campo personalizado al formulario de registro.
function add_custom_registration_field() {
echo '<p><label for="user_custom_field">Campo Personalizado<br><input type="text" name="user_custom_field"></label></p>';
}
add_action('register_form', 'add_custom_registration_field');