Descriere
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
- Install the plugin.
- Input the container ID in preferences
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:
- a comprehensive overview of all tags you are using
- tags can be deactivated in the Tag Manager
- you can preview changes on your site before putting them live for your visitors
- provide access to tags management for marketing staff – no code changes needed
- use all the rules and macros to fine grained adjust tag usage
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();
} ?>
…
Instalare
- Upload folder
wp_google_tag_manager
into/wp-content/plugins/
directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- Enter your container id in ‘Settings’ –> ‘WP Google Tag Manager’ menu in wordpress
Întrebări frecvente
- What is google tag manager
-
See google tag manager.
- Where can I find my container id
-
Log in Google Tag Manager
- Navigate to
„Container” –> „Container Settings” –> „Container Snippet” –> iframe src=”//www.googletagmanager.com/ns.html?id=GTM-1A23”
GTM-1A23 would be your container id.
See Screenshot 2. - Or Navigate to
„Versions” –> highestNumber –> „Container Public ID”
GTM-1A23 would be your container id.
See Screenshot 3.
- Navigate to
Recenzii
Nu există nicio verificare pentru acest modul.
Contributori și dezvoltatori
„WP Google Tag Manager” este un software open-source. La acest modul au contribuit următoarele persoane.
ContributoriTradu „WP Google Tag Manager” în limba ta.
Te interesează dezvoltarea?
Răsfoiește codul, vezi depozitarul SVN, sau abonează-te la jurnalul de dezvoltare prin RSS.
Istoric modificări
1.0
- Initial release
1.1
- Added possibility to place tag manager code manually in themes, see description