Formstorkdocs
PricingENTRDashboard

WordPress

You do not need a form plugin to collect submissions in WordPress. Formstork gives you a plain endpoint, so a single Custom HTML block turns into a working contact form, no plugin to install, update or slow your site down.

Option 1: paste an HTML block

In the WordPress editor, add a Custom HTML block and paste:

<form action="https://api.formstork.com/submit" method="POST">
  <input type="hidden" name="access_key" value="YOUR_ACCESS_KEY">
  <input type="hidden" name="redirect" value="https://yoursite.com/thank-you">

  <p><label>Name<br><input type="text" name="name" required></label></p>
  <p><label>Email<br><input type="email" name="email" required></label></p>
  <p><label>Message<br><textarea name="message" required></textarea></label></p>

  <!-- Honeypot: bots fill this, humans don't. -->
  <input type="checkbox" name="botcheck" style="display:none" tabindex="-1" autocomplete="off">

  <p><button type="submit">Send</button></p>
</form>

Replace YOUR_ACCESS_KEY with the key from your Formstork dashboard and update the redirect URL to a thank-you page on your site. Publish the page and submissions land in your inbox and your dashboard.

The form inherits your theme’s styles. To match your buttons, add a class and style it in Appearance → Customize → Additional CSS.

Option 2: embed a hosted form

Prefer to design the form without touching markup? Build one in the Formstork no-code builder, then embed it with the iframe snippet from the Share step:

<iframe src="https://app.formstork.com/f/YOUR_FORM_ID"
        title="Contact" style="width:100%;border:0;min-height:480px"></iframe>

The hosted form carries your colors and logo, resizes to fit, and keeps the same dashboard, spam filtering and integrations behind it. This is the easiest route on WordPress.com plans that restrict raw HTML.

Classic editor and shortcodes

On the Classic editor, switch to the Text (HTML) tab and paste the same block. If your theme strips form tags, use the hosted-form iframe above instead, it survives editors that sanitize markup.

Keep spam out

The hidden botcheck honeypot stops most bots. Formstork also runs a server-side spam filter and can require hCaptcha or Turnstile per form, so you get protection without a reCAPTCHA badge on your site.

Send submissions beyond email

Every WordPress submission can also go to Slack, Discord, Google Sheets, Telegram or a webhook, useful for routing leads to your team without another plugin.

Get your free access key and paste your first form.