Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 710 Bytes

File metadata and controls

14 lines (10 loc) · 710 Bytes

How to: create WP plugin with admin forms

Simple solution for saving configuration options using custom forms in wp-admin dashboard.

This Wordpress Plugin has simple directory structure and is object oriented (PHP). It's good boilerplate to start your own wordpress plugin that will render forms in Admin Dasboard area. Can be used as plugin starter in your own project.

We have 4 different types of fields:

  • text input
  • textarea
  • choice select
  • checkbox options

Read more on our site: https://www.createit.com/blog/how-to-create-a-wp-plugin-with-admin-forms/