Sarathlal N

Add Google analytics on Anchor CMS

Have you ever tried to add Google analytics script on Anchor CMS. I have a simple & efficient way to do it with site variable in Anchor CMS.

The anchor CMS is a light weight, fast & minimal open Source blog engine written in PHP. It have some amazing options and now we use one of it, site variable to add Google analytics code on Anchor CMS.

The site variable is a option to add variables for site wise in Anchor CMS. We can access its value as a site meta in any where in our template files. We use this option to add our analytics script in our theme’s header or footer.

Before further reading, I consider that you have your Google Analytics code with you. If else, you want to make a analytics script for your site from Google analytics official website.

Step 1: Add a new site variable in admin area of Anchor CMS.

For example, value for g_analytics, my site variable is look like below one.

<script type="text/javascript">
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-xxxxxx-1');ga('send','pageview');
</script>

The g_analytics is the name for my site variable & you can use any unique name for it.

Step 2: Now we want to use this snippet in our theme files.

In feature, if you want to edit your Google analytics code or customize it, just go to site variable option in admin end & edit your script in value field. This is the biggest advantage of this method because our analytics script is automatically updated without any editing in theme files.

Looking for a skilled WordPress/WooCommerce developer? I'm currently available for freelance, contract, or full-time remote opportunities! Let's create something amazing together. Send me a quick message, and I'll respond within 24 hours!

Recent Posts

  1. Automating Code Linting with GitHub Actions for WordPress Plugins
  2. Comprehensive Guide to Linting PHP, JavaScript, and CSS in WordPress Plugins Using Composer
  3. The Ultimate Guide to Indexing in Database Design
  4. Understanding 'update_meta_cache' in WordPress - When to Use It, When Not to, and Its Impact on Database Queries
  5. A Guide to Configuring JavaScript and SCSS Paths in WordPress Plugins with @wordpress/scripts

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.