Вы не можете использовать вышеуказанный хук, если вы ищете описание.Однако вы можете использовать следующий метод.
Код для вывода полей
add_action( 'show_user_profile', 'extra_user_profile_fields' );
add_action( 'edit_user_profile', 'extra_user_profile_fields' );
function extra_user_profile_fields( $user ) { ?>
<h2><?php _e("Extra Contact Info", "textdomain"); ?></h2>
<table class="form-table">
<tr>
<th><label for="skype"><?php _e("Skype Username"); ?></label></th>
<td>
<input type="text" name="skype" id="skype" value="<?php echo esc_attr( get_the_author_meta( 'skype', $user->ID ) ); ?>" class="regular-text" /><br />
<span class="description"><?php _e("Please enter your skype."); ?></span>
</td>
</tr>
<tr>
<th><label for="phone"><?php _e("Phone"); ?></label></th>
<td>
<input type="text" name="phone" id="phone" value="<?php echo esc_attr( get_the_author_meta( 'phone', $user->ID ) ); ?>" class="regular-text" /><br />
<span class="description"><?php _e("Please enter your phone."); ?></span>
</td>
</tr>
</table>
<?php }
Код для сохранения полей
add_action( 'personal_options_update', 'save_extra_user_profile_fields' );
add_action( 'edit_user_profile_update', 'save_extra_user_profile_fields' );
function save_extra_user_profile_fields( $user_id ) {
if ( !current_user_can( 'edit_user', $user_id ) ) {
return false;
}
update_user_meta( $user_id, 'skype', $_POST['skype'] );
update_user_meta( $user_id, 'phone', $_POST['phone'] );
}