Extra filed under “About the user” user profile
Add following code in theme’s functions.php file. add_action( ‘show_user_profile’, ‘extra_user_profile_fields’ ); add_action( ‘edit_user_profile’, ‘extra_user_profile_fields’ ); function extra_user_profile_fields( $user ) { ?> <table class=”form-table”> <tr> <th><label for=”address”><?php _e(“Designation”); ?></label></th> <td> <input type=”text” name=”designation” id=”designation” value=”<?php echo esc_attr( get_the_author_meta( ‘designation’, $user->ID ) ); ?>” class=”regular-text” /><br /> </td> </tr> <tr> <th><label for=”city”><?php _e(“Linked In”); ?></label></th> <td> <input … Read more