Install guide
Add e-ZeeInternet to WordPress
Three ways to add the snippet on WordPress. Pick whichever fits how you edit your site.
- 1
1. Copy your snippet
Create a tracker in e-ZeeInternet and copy the tag below (replace YOUR_SITE_ID).
<script async src="https://e-zeeinternet.com/t.js" data-site="YOUR_SITE_ID" data-mode="cookieless"> </script> - 2
Method A — Header/footer plugin (easiest)
Plugins → Add New → install "WPCode" or "Insert Headers and Footers" → Activate. Paste the snippet into Header (tracking-only) or Body/Footer (with visible counter). Save.
- 3
Method B — Block Editor
Edit the post/page → add a Custom HTML block → paste the snippet → Update. To reuse, save it as a pattern / reusable block.
- 4
Method C — functions.php
In your child theme's functions.php, hook into wp_head (tracking-only) or wp_footer (with visible counter):
add_action('wp_head', function () { ?> <script async src="https://e-zeeinternet.com/t.js" data-site="YOUR_SITE_ID" data-mode="cookieless"></script> <?php }); - 5
2. Verify
Open your site in a private window — the hit should appear in your dashboard within seconds.
Notes
- Placement: anywhere inside the <body> tag works for both tracking and the visible counter. If you only use tracking (no on-page counter), the snippet can also live in the <head>.
- Purge your caching plugin / CDN after saving.
- If hits don't appear, exclude e-zeeinternet.com/t.js from JS optimization.
- Edit functions.php in a child theme so updates don't wipe your snippet.