Where are the form names stored for WPForms?

Viewed 16

I'm trying to recreate the WPForms Entries section for a customer portal. I can find all of the entries and related information in the phpMyAdmin database, except for the form names. The closest I have been able to find is the form_id, which is great for relational linking, but without the form name being found I would need to manually place these in the code and link them with the ID. I'd prefer to just grab it from the DB in case others are added.

1 Answers

wpforms create a new post type wpforms, and you can find the all information in wp_posts table. You can locate title under the post_title column in wp_posts table.

enter image description here

enter image description here

enter image description here

Related