beastsaber / bsaber

https://bsaber.com
9 stars 9 forks source link

Track page and post views #94

Closed TimothyGillespie closed 5 months ago

TimothyGillespie commented 5 months ago

This is perhaps already implemented on the hosting side, but it would be great to know how many people have accessed a specific page or a post.

Nice to Have:

helencarnate commented 5 months ago

Here is the code snippet. Copy and paste it in the code of every page of your website, immediately after the element

<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-16Q4KP49MG"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-16Q4KP49MG');
</script>