Tell us what you are trying to do? add fields/data to user account (or connect records to a user account) like: 2015 payment (yes/no), 2014 payment (yes/no), 2013 payment (yes/no), etc. I will upload the data - no cred forms needed - i just need fields available to upload data to, and then need to be able to display the data on it's own page for the logged in user - not in the users profile.
Is there any documentation that you are following? no
no, i will upload via csv but that's not a problem - what I'm asking is how to create fields to upload to.
The data is tabular - I'm attaching an image of what i would do if the correct method would be to use post types but if that is the correct method then i don't know how to attach it to a user.
if i can create user meta instead then, in that case, i don't know how to upload tabular data as user meta.
also uploading image of what i need to display, ultimately. any advice appreciated. thanks.
I mean to say you can not establish relationship with user directly as there is no such feature available.
So there are two ways:
1) - Create CPT to store your info (year,status,info) and link user as post author (set your required user ID as post author)
OR
2) - You need two CPT one to store your info (year,status,info) and another CPT to store user ID and link both CPT using Types post relationship
[ However - this will be lengthy process ]
OR
3) - Another idea is to add one more custom field to store the user ID with your CPT as stated in #1