Forming Forms – Form Builder for Block Editor is a lightweight contact form and form builder plugin built entirely on the WordPress block editor. A form is a block: add the Form block to any post or page, nest the field blocks you need, and publish. No shortcodes, no embeds, no separate form builder screen to learn.
Every field — text, email, phone, select, checkbox — is a real WordPress block. That means you build your contact form the same way you build the rest of your page, with the same drag-and-drop, the same undo, and the same design controls you already use every day.
Submissions are validated on the server, checked for spam, emailed to you, and saved as entries in your WordPress admin.
Most form builder plugins ask you to compose a form in a separate admin screen and then paste a shortcode into your page. Forming Forms skips that entirely. The form is built where it lives, and what you see in the editor is what your visitors get.
forming_entry custom post type, one meta value per field, so your form data stays in your own database.forming_field_blocks filter and hook forming_submission_saved to react to new entries.A contact form, a quote request form, a support or feedback form, a newsletter signup, a job application, an RSVP or event registration form, a simple survey — anything you would otherwise build with a shortcode-based form builder.
Register your own block in the forming category and append its name to the allowlist:
add_filter( 'forming_field_blocks', function ( $blocks ) {
$blocks[] = 'my-plugin/field-rating';
return $blocks;
} );
React to a new submission:
add_action( 'forming_submission_saved', function ( $entry_id, $data, $form_id ) {
// $data is a name => value map of the validated submission.
}, 10, 3 );
Forming Forms – Form Builder for Block Editor is distributed under the terms of the GNU General Public License v2 or later. See https://www.gnu.org/licenses/gpl-2.0.html for more details.