Embed Flowqen forms in WordPress using a simple HTML block or our dedicated WordPress plugin. Works on any theme.
Go to flowqen.com/create and create a form in 10 seconds. No account needed. Copy the form ID from the URL.
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>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.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.