This WordPress plugin allows you to easily insert your code on your pages for statistics usage of your site.
It has several advantages compared to plugins that just add a Google Analytics ID:
- It allows to specify the complete Google Analytics tag, and therefore to have a tag adapted to your needs (multidomain, subdomains, etc.).
- It also allows you to add other types of tags that may be useful to manage a site, whether for simple tracking of using another platform than Google Analytics, or for the insertion of tags at the request of a SEO or SEM partner.
In addition, the code is inserted into the footer of your pages, which is good practice for the web and avoids slow down your site if the tracking platform is overloaded.
Plugin developed by
Neoptin. Need
WordPress Services?
How to uninstall WP Analytics Tracking?
To uninstall WP Analytics Tracking, just De-activate the plugin from the plugin list.
Examples of analytics code
You just have to copy the code you get from your Google Analytics administration interface & paste it into the text box of the plugin
`
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
_gaq.push(['_setDomainName', 'DOMAIN.TLD']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google
-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
`