Documentation

Install on WordPress

Add Open Analytics to a WordPress site: where the snippet goes and how to verify it.

The short way

From your project folder, let the CLI detect WordPress and place the snippet itself:

Terminal
npx getopen init

It asks for your tracking key, writes the tag, and prints which file it changed. It is idempotent, so running it on a project that already has the snippet leaves it alone. Prefer to do it by hand? The steps below are exactly what it does.

Add it to WordPress

Paste the snippet before </head> in your theme's header template. On a block theme, use a header-scripts plugin or your theme's custom-code field instead; any mechanism that lands the tag in <head> is fine.

header.php
<script
  async
  src="https://c.getopen.so/oa.js"
  data-key="YOUR_TRACKING_KEY"
  data-collector="https://c.getopen.so"
></script>

A caching plugin may serve old HTML for a while; purge its cache after adding the tag.

Deploy and open the site at the address you gave the dashboard. The realtime view shows the visit within seconds; historical charts fill moments later. Loading it on your dev server first still tells you something: the dashboard's waiting screen names the host it saw the tag load on, and the tracker writes one line in the browser console when that host is not one the site counts. Visits themselves are only counted from the site's own domain, because localhost cannot be listed: deploy to see data, or empty the allowed domains list in Settings while you install. Nothing arriving? The troubleshooting page walks through the usual reasons.

Where to next