کد اصلی اینه:
<h3><?php _e( 'Contact Info', 'theme-my-login' ) ?></h3>
<table class="form-table">
<tr>
<th><label for="email"><?php _e( 'E-mail', 'theme-my-login' ); ?> <span class="description"><?php _e( '(required)', 'theme-my-login' ); ?></span></label></th>
<td><input type="text" name="email" id="email" value="<?php echo esc_attr( $profileuser->user_email ) ?>" class="regular-text" /></td>
</tr>
<tr>
<th><label for="url"><?php _e( 'Website', 'theme-my-login' ) ?></label></th>
<td><input type="text" name="url" id="url" value="<?php echo esc_attr( $profileuser->user_url ) ?>" class="regular-text code" /></td>
</tr>
<?php if ( function_exists( '_wp_get_user_contactmethods' ) ) :
foreach ( _wp_get_user_contactmethods() as $name => $desc ) {
?>
<tr>
<th><label for="<?php echo $name; ?>"><?php echo apply_filters( 'user_'.$name.'_label', $desc ); ?></label></th>
<td><input type="text" name="<?php echo $name; ?>" id="<?php echo $name; ?>" value="<?php echo esc_attr( $profileuser->$name ) ?>" class="regular-text" /></td>
</tr>
<?php
}
endif;
?>
</table>
و من می خواستم چند فیلد آخر رو حذف کنم که فایل جدید شد این:
<h3><?php _e( 'Contact Info', 'theme-my-login' ) ?></h3>
<table class="form-table">
<tr>
<th><label for="url"><?php _e( 'Website', 'theme-my-login' ) ?></label></th>
<td><input type="text" name="url" id="url" value="<?php echo esc_attr( $profileuser->user_url ) ?>" class="regular-text code" /></td>
</tr>
</table>
فقط همین تغییر رو دادم. بقیه کد رو دست نزدم.