<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Google analytics &#8211; Snippets</title>
	<atom:link href="http://wp.djtedfunke.com/tag/google-analytics/feed/" rel="self" type="application/rss+xml" />
	<link>http://wp.djtedfunke.com</link>
	<description></description>
	<lastBuildDate>Sat, 05 Jan 2019 13:40:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.3</generator>

<image>
	<url>http://wp.djtedfunke.com/wp-content/uploads/2018/12/cropped-front-end_developer-2-512-32x32.png</url>
	<title>Google analytics &#8211; Snippets</title>
	<link>http://wp.djtedfunke.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Google Analytics &#8211; GDPR</title>
		<link>http://wp.djtedfunke.com/google-analytics-gdpr/</link>
		
		<dc:creator><![CDATA[tadej]]></dc:creator>
		<pubDate>Sat, 05 Jan 2019 13:40:01 +0000</pubDate>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Google analytics]]></category>
		<guid isPermaLink="false">http://wp.djtedfunke.com/?p=148</guid>

					<description><![CDATA[Adding Google Anyltics code and adding option to disable it:]]></description>
										<content:encoded><![CDATA[
<p>Adding Google Anyltics code and adding option to disable it:</p>



<pre class="wp-block-code"><code>   &lt;!-- Google Analytics -->
    &lt;script async src='//www.google-analytics.com/analytics.js'>&lt;/script>
    &lt;script>
    window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
    ga('create', 'UA-xxxxxx-x', 'auto');
    ga('set', 'anonymizeIp', true);
    ga('send', 'pageview');
    &lt;/script>
    &lt;!-- End Google Analytics -->


    //HTML LINK
    &lt;a class="ga-disable" href="#">Link&lt;/a>
    &lt;a href="javascript:gaOptout()">Link&lt;/a>


    // Set to the same value as the web property used on the site
    var gaProperty = 'UA-xxxxxx-x';
    // Disable tracking if the opt-out cookie exists.
    var disableStr = 'ga-disable-' + gaProperty;
    if (document.cookie.indexOf(disableStr + '=true') > -1) {
        window[disableStr] = true;
    }
    // Opt-out function
    function gaOptout() {
        document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
        window[disableStr] = true;
        alert('Das Tracking durch Google Analytics wurde in Ihrem Browser für diese Website deaktiviert.');
    }




    jQuery(document).ready(function($) {
        $(".ga-disable").click(function(event) {
            event.preventDefault();
            gaOptout();
        });
    });</code></pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Google Analytics &#8211; tracking</title>
		<link>http://wp.djtedfunke.com/google-analytics-tracking-2/</link>
		
		<dc:creator><![CDATA[tadej]]></dc:creator>
		<pubDate>Tue, 01 Jan 2019 22:11:54 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Google analytics]]></category>
		<guid isPermaLink="false">http://wp.djtedfunke.com/?p=128</guid>

					<description><![CDATA[Include the Google Analytics Tracking Code &#8211; WP Functions]]></description>
										<content:encoded><![CDATA[
<p>Include the Google Analytics Tracking Code &#8211; WP Functions</p>



<pre class="wp-block-code"><code>add_action('wp_head', 'wpb_add_googleanalytics');
function wpb_add_googleanalytics() { ?>
    &lt;script type="text/javascript">
        (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
        (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
        m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
        })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

        ga('create', 'UA-166254-45', 'auto');
        ga('send', 'pageview');
    &lt;/script>
&lt;?php }</code></pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Google analytics &#8211; tracking</title>
		<link>http://wp.djtedfunke.com/google-analytics-tracking/</link>
		
		<dc:creator><![CDATA[tadej]]></dc:creator>
		<pubDate>Tue, 01 Jan 2019 22:11:17 +0000</pubDate>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Google analytics]]></category>
		<guid isPermaLink="false">http://wp.djtedfunke.com/?p=126</guid>

					<description><![CDATA[Include the Google Analytics Tracking Code (ga.js) &#8211; HEADER]]></description>
										<content:encoded><![CDATA[
<p>Include the Google Analytics Tracking Code (ga.js) &#8211; HEADER</p>



<pre class="wp-block-code"><code>&lt;script async src='https://www.googletagmanager.com/gtag/js?id=UA-40742215-1'>&lt;/script>
&lt;script>
    window.dataLayer = window.dataLayer || [];
    function gtag(){
        dataLayer.push(arguments);
    }
    gtag('js', new Date());
    gtag('config', 'UA-000000-1', { 'anonymize_ip': true });
&lt;/script></code></pre>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
