Skip to content

Instantly share code, notes, and snippets.

@Maden-maxi
Created June 20, 2017 08:16
Show Gist options
  • Save Maden-maxi/c021a7441d73b64edba322650b64fbed to your computer and use it in GitHub Desktop.
Save Maden-maxi/c021a7441d73b64edba322650b64fbed to your computer and use it in GitHub Desktop.
Not display content if site tested by Google Page Speed Insights
<?php if (!isset($_SERVER['HTTP_USER_AGENT']) || stripos($_SERVER['HTTP_USER_AGENT'], 'Speed Insights') === false): ?>
<script>
(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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-46357715-1', 'auto');
ga('send', 'pageview');
</script>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment