pom / form
An easy way to render form fields in WordPress.
dev-main
2025-04-04 06:21 UTC
Requires
- php: >=7.4
- ext-fileinfo: *
- ext-json: *
- ext-zend-opcache: *
- cerdic/css-tidy: v2.0.1
- select2/select2: 4.0.13
This package is auto-updated.
Last update: 2025-04-04 06:21:33 UTC
README
An easy way to render form fields in WordPress.
Install
composer require pom/form
Requirements
- PHP 7.4 or higher
- WordPress 5.0 or higher.
Dependencies
This package uses the following third party libraries:
- jQuery: Version included in WordPress
- Bootstrap: v4.6.0
- select2: v4.0.13
- CodeMirror: Version included in WordPress
How to use
To output any field first you need to import the required class:
use PomatioFramework\Pomatio_Framework;
Example of how to render a field:
echo (new Pomatio_Framework())::add_field([ 'type' => 'text', 'label' => 'Test Framework', 'description' => 'Lorem ipsum dolor sit amet consectetur adipiscing elit.', 'placeholder' => 'Lorem Ipsum', // optional 'name' => 'name', 'class' => 'regular-text', 'value' => '', 'description_position' => 'below_label' // optional 'default' => '' // optional ]);
Docs
The framework is fully documented here.