📝

Add a Contact Form to WordPress

Embed Flowqen forms in WordPress using a simple HTML block or our dedicated WordPress plugin. Works on any theme.

1

Create a form on Flowqen

Go to flowqen.com/create and create a form in 10 seconds. No account needed. Copy the form ID from the URL.

2

Add the HTML form

The simplest approach — just paste this HTML into your WordPress project:

<!-- Paste this in a WordPress "Custom HTML" block -->
<form action="https://flowqen.com/api/f/YOUR_FORM_ID" method="POST">
  <p><label>Name<br><input type="text" name="name" required style="width:100%;padding:8px;" /></label></p>
  <p><label>Email<br><input type="email" name="email" required style="width:100%;padding:8px;" /></label></p>
  <p><label>Message<br><textarea name="message" required style="width:100%;padding:8px;" rows="4"></textarea></label></p>
  <p><button type="submit" style="background:#E14E3A;color:#fff;padding:10px 24px;border:none;border-radius:6px;cursor:pointer;">Send</button></p>
</form>
3

WordPress-specific code

Use WordPress's native patterns for a better developer experience:

// Or use the Flowqen WordPress plugin (wp-admin → Plugins → Add New → "Flowqen")
// After installing, use the shortcode:
[flowqen id="YOUR_FORM_ID"]

// The plugin renders a styled, accessible form that matches your WordPress theme.
// Submissions go to your Flowqen dashboard with full analytics and integrations.
4

Done — check your dashboard

Submit a test entry. Go to your Flowqen dashboard to see the submission. Set up email notifications, Slack alerts, or any of our 22+ integrations.

What you get with every Flowqen form

Spam filtering (honeypot + Turnstile)
Email notifications
File upload support
Real-time analytics dashboard
22+ integrations (Slack, Discord, Notion, etc.)
Lead tracking pipeline
Auto-reply emails
Custom redirect URLs
CORS support for AJAX
API access (REST)
Create a form free →Read the full docs