>
Download This Plugin | |
Download Elegant Themes | |
Name | WP Google Tag Manager |
Version | 1.1 |
Author | conlabzgmbh |
Rating | 54 |
Last updated | 2013-01-10 05:42:00 |
Downloads |
7685
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
WP Google Tag Manager plugin added 2 kB of resources to the Home page and 2 kB of resources to the sample Post page.
WP Google Tag Manager plugin added 1 new host(s) to the Home page and 1 new host(s) to the sample Post page.
Great! WP Google Tag Manager plugin ads no tables to your Wordpress blog database.Your wordpress website includes third party scripts and tools like website traffic analytics, ad banners counter by feedburner or some top lists. Google Tag Manager provides a comprehensive user interface to manage all these scripts (tags) and include them with a single plugin into your wordpress powered website.
This plugin includes both the javascript code to bring those tags into your site and the fall back iframe code to still provide functionality if javascript is disabled. Installation requires just two simple steps
Instead of copy and pasting lots of script tags into you wordpress theme files or managing a couple of plugins for diverse services you can now serve this all from a single source - the Tag Manager. Tags are comfortably managed in the Google user interface, no need to further touch you wordpress installation.
Registration for Tag Manager (https://www.google.com/tagmanager/) is two simple steps before you receive the Container ID which is the only information the plugin requires to work properly. From now on, you have a couple of advantages:
Besides management of tags you'll notice better loading times of your website due to asynchonous loading of scripts.
Technical stuff:
Wordpress only allows placement of tag-manager-code in the footer through wp_footer action hook. So if you want to place the code directly behind the body tag you have to edit your theme like this:
...
<body>
<?php global $wp_google_tag_manager;
if(is_object($wp_google_tag_manager) && is_a($wp_google_tag_manager,"WpGoogleTagManager")){
$wp_google_tag_manager->output_manual();
} ?>
...