Customizing WP tables or adding new ones?
You should avoid adding new tables or customising the existing tables to add fields for users. If you want to store a phone number etc, do it using user meta: add_user_meta( $user_id, ‘riccardo_phone_number’, ‘0123-456-7890’ ); …. $phone_number = get_user_meta( $user_id ); User meta is a key and a value with a post ID in the … Read more