Thread Starter
SIGEPJEDI
(@joshcarricorockybrandscom)
Additionally, I understand how Posts and PostMeta are being used but I am trying to tie back the postmeta.meta_key for data values to the Job Managers Job entry list of questions. Not sure where this is stored.
Thread Starter
SIGEPJEDI
(@joshcarricorockybrandscom)
Adding my findings:
JOB APPLICATIONS:
The main record, or Application ID (Interface URL appid=), is in WP POSTS Table
SELECT * FROM posts WHERE post_type = ‘jobman_app’
APPLICATION DATA:
All submitted application data is contained in the WP POSTMETA Table. This may be referenced back to the main POST Application ID (appid or posts.id).
——————————–
THIS SECTION I AM NOT CERTAIN OF
——————————–
APPLICATION FORM SETTINGS (LABEL DATA):
This information is contained in the WP OPTIONS Table. WHERE option_name = jobman_options
——————————–
THIS SECTION I AM NOT CERTAIN OF
——————————–
The last piece that would be required would be to tie back the users application answers/data (POSTMETA) to the original application form questions (OPTIONS).
I am not familiar with how information is used from a WP Plugin perspective.