User Details
User Details
// Register User Contact Methods function custom_user_contact_methods( $user_contact_method ) { $user_contact_method['name'] = __( 'Name', 'text_domain' ); $user_contact_method['Phone'] = __( 'Phone', 'text_domain' ); $user_contact_method['email'] = __( 'email', 'text_domain' ); $user_contact_method['Address'] = __( 'Address', 'text_domain' ); $user_contact_method['Comments'] = __( '', 'text_domain' ); return $user_contact_method; } add_filter( 'user_contactmethods', 'custom_user_contact_methods' );