Os adjunto la estructura de la tabla wp_users.
Como podréis ver, los campos están en blanco
Y aquí tenéis el código PHP del formulario de registro. Como podréis comprobar, los nombres se llaman igual que están en la tabla:
Código PHP:
Ver original<div class="login" id="theme-my-login<?php $template->the_instance(); ?>">
<?php $template->the_action_template_message( 'Registro' ); ?>
<?php $template->the_errors(); ?>
<form name="registerform" id="registerform<?php $template->the_instance(); ?>" action="<?php $template->the_action_url( 'register' ); ?>" method="post">
<p>
<label for="user_login<?php $template->the_instance(); ?>"><?php _e( 'Usuario', 'theme-my-login' ) ?></label>
<input type="text" name="user_login" id="user_login<?php $template->the_instance(); ?>" class="input" value="<?php $template->the_posted_value( 'user_login' ); ?>" size="20" />
</p>
<p>
<label for="user_email<?php $template->the_instance(); ?>"><?php _e( 'Correo electrónico', 'theme-my-login' ) ?></label>
<input type="text" name="user_email" id="user_email<?php $template->the_instance(); ?>" class="input" value="<?php $template->the_posted_value( 'user_email' ); ?>" size="30" />
</p>
<p>
<label for="user_centro<?php $template->the_instance(); ?>"><?php _e( 'Centro de trabajo', 'theme-my-login' ) ?></label>
<input type="text" name="user_centro" id="user_centro<?php $template->the_instance(); ?>" class="input" value="<?php $template->the_posted_value( 'user_centro' ); ?>" size="60" />
</p>
<p>
<label for="user_especialidad<?php $template->the_instance(); ?>"><?php _e( 'Especialidad', 'theme-my-login' ) ?></label>
<input type="text" name="user_especialidad" id="user_especialidad<?php $template->the_instance(); ?>" class="input" value="<?php $template->the_posted_value( 'user_especialidad' ); ?>" size="50" />
</p>
<p>
<label for="user_participantes<?php $template->the_instance(); ?>"><?php _e( 'Número de participantes', 'theme-my-login' ) ?></label>
<input type="text" name="user_participantes" id="user_participantes<?php $template->the_instance(); ?>" class="input" value="<?php $template->the_posted_value( 'user_participantes' ); ?>" size="20" />
</p>
<p>
<label for="user_telefono<?php $template->the_instance(); ?>"><?php _e( 'Numero de teléfono *(opcional)', 'theme-my-login' ) ?></label>
<input type="text" name="user_telefono" id="user_telefono<?php $template->the_instance(); ?>" class="input" value="<?php $template->the_posted_value( 'user_telefono' ); ?>" size="9" />
</p>
Un abrazo!