Is there crud plugin for wordpress?

Asked

Viewed 1,630 times

0

I need a plugin that take the information from a form and insert it into the database, also want to be able to change, query and delete this data on an admin page.

May be plugins distinct for each function.

I understand medially PHP, but I’m not familiar with WP, which complicates, because I find it very limited, but I need to use it.

2 answers

1

Plugin for Cruds generic within Wordpress is not very necessary, when one has the good use of the global class $wpdb.

Create your own plugins manipulating the wpdb Class. However, there are plugins(paid) for generic purposes, but may not address specific situations.

  • I also think plugins are not very necessary in this case, the wpdb class allows you to make Cruds and calsse Wp_list_table to create the admin page to manage the data.

0

As @Lollipop mentioned, the use of wpdb can solve your problem. But, when it comes to plugins, I believe that the Contact Form DB may give you some light. I have used it together with the Contact Form 7 in various projects, and it works very well. Its interface allows you to view and delete inputs from Forms directly from the WP administration panel. As for change, things get complicated. I know there is a paid plugin for this, but never used (and nor needed).

Browser other questions tagged

You are not signed in. Login or sign up in order to post.