// Hooks near the bottom of profile page (if current user) add_action('show_user_profile', 'custom_user_profile_fields'); // Hooks near the bottom of the profile page (if not current user) add_action('edit_user_profile', 'custom_user_profile_fields'); // @param WP_User $user function custom_user_profile_fields( $user ) { ?> <table class="form-table"> <tr> <th> <label for="code"><?php _e( 'App Store Link to VR App' ); ?></label> </th> <td> <input type="text" name="user_app_store_link" id="user_app...