Created
October 10, 2012 05:37
-
-
Save anandkumar/3863360 to your computer and use it in GitHub Desktop.
GoogleTag Manager on Thesis Theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Add Add Google Tag Manager script on Thesis Theme Framework | |
* | |
* @author Anand Kumar | |
* @link http://www.blogsynthesis.com/add-google-tag-manager-to-wordpress/#thesis-theme-framework | |
* | |
*/ | |
function limit_front_page() { | |
global $query_string; | |
?> | |
<!-- Google Tag Manager --> | |
PASTE GOOGLE CODE MANAGER CODE HERE | |
<!-- End Google Tag Manager --> | |
<?php | |
} | |
add_action('thesis_hook_before_html', 'limit_front_page'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment