Documentation WordPress Integration

WordPress Integration

Install PrivacyPulse on your WordPress site.

Option 1: Theme Header

  1. Go to Appearance → Theme Editor
  2. Open header.php
  3. Add the tracking script before </head>

Option 2: Plugin

Use a header/footer scripts plugin like "Insert Headers and Footers":

  1. Install and activate the plugin
  2. Go to Settings → Insert Headers and Footers
  3. Paste your tracking script in the Header section
  4. Save

Option 3: functions.php

add_action('wp_head', function() {
    echo '<script defer src="https://your-domain.com/t.js" data-website-id="YOUR_ID"></script>';
});