Track content groups in Google Analytics
August 22, 2015 2:08 pmLeave your thoughts
Most websites have content groups of some sort – if you’re a travel company you might group content based on destination or style of travel, if you’re an eCommerce site you could group content by product line. Like most blogs the posts here are grouped by category and it would be nice to track the performance of each category in Google Analytics, here’s how… First up it’s important to mention that there’s a number of different ways to do this. You could simply let data flow in to your account as normal and use advanced segments, you could use a plugin like Google Analytics Premium by Yoast, or if your website has a very clear hierarchy you might be able to use the configuration controls built right in to the Google Analytics admin interface.

$allCats
variable.
<?php
// if this is the homepage or a normal page (e.g. contact, about) then it's general)
if ( is_home() || get_post_type() == 'page') {
$allCats = 'general';
}
// if this is a category or post page use the category slug
elseif (is_category() || get_post_type() == 'post') {
$categories = get_the_category();
foreach ($categories as $category) {
$catName[] = $category->cat_name;
}
// implode the categories into a comma separated string as we only have 5 content group slots!
$allCats = implode(', ', $catName);
}
// otherwise how did we get here?!
// you could be more imaginative and use $_SERVER['REQUEST_URI'] here for debugging
else {
$allCats = 'error';
}
?>
This is a very basic example that covers all the page types used on my blog, if you have custom post types or other things going on you will have to accommodate it in your logic – but the simpler the better. It needs to be robust and future proof otherwise you’ll have to keep coming back and updating your code, or worse you’ll just end up with a lot of uncategorised content.
For posts that belong to more than one category I still record these as a single group (whose name will be a comma separated list of category names) due to the fact that Google Analytics allows only 5 content groups in total. For example if you also wanted to track content by tag and author you would only have 2 groups left to use.
I recommend testing your content grouping thoroughly before moving to analytics, there’s always edge cases or long forgotten pages that you may not have accounted for. Using the code above you can output the your category names to a HTML comment and then test on various pages.
<?php
echo '<!-- xyztest: ' . $allCats . '-->';
?>
Then use a tool like ScreamingFrog to crawl your entire site and check for the existence of the correct HTML comment. Once you’re happy you can add the GA snippet to your page.
For Google Tag Manager you can use the dataLayer – don’t forget this needs to come before the GTM tag code:
<script>
dataLayer = [{
'pageGroup': '<?php echo $allCats ?>'
}];
</script>
For Universal Analytics it will look something like so:
ga('set', 'contentGroup1', '<?php echo $allCats ?>');
Again this needs to be done before your initial pageview is sent ga('send', 'pageview');
Now you can head to Google Analytics to configure your content group. As always I highly recommend trialling this in a test view first – this is particularly important as you can’t delete content groups once created! In Google Analytics go to:
Admin > view > content grouping > new content grouping


click on your container name > variables > user-defined variables > newYou want to create a Data Layer variable – as above I used the name
pageGroup
for the dataLayer variable.

now click tags > your universal tag > configure tag > content groups

behavior > site content > all pages

Categorised in: Digital Marketing, Web Development
This post was written by WillyNilly