Documentation
WordPress Integration
WordPress Integration
Install PrivacyPulse on your WordPress site.
Option 1: Theme Header
- Go to Appearance → Theme Editor
- Open
header.php - Add the tracking script before
</head>
Option 2: Plugin
Use a header/footer scripts plugin like "Insert Headers and Footers":
- Install and activate the plugin
- Go to Settings → Insert Headers and Footers
- Paste your tracking script in the Header section
- 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>';
});