我想在不使用该模块的情况下将我的Google Analytics代码添加到Drupal网站.我读了与此相关的线程,但我无法在我的网站上进行.我想将我的代码放在< head>< / head>中标签.这是我的代码:
- <script type="text/javascript">
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount','UA-XXXXXXX-X']);
- _gaq.push(['_setDomainName','example.com']);
- _gaq.push(['_trackPageview']);
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga,s);
- })();
- </script>