What Happened to Google Analytics by Yoast?
If you've been working with WordPress for a while, you probably remember the "Google Analytics by Yoast" plugin - a simple, go-to tool for connecting your site to Google Analytics. If you're looking for it today, you'll find it's vanished. This article will explain what happened to the plugin, what it has become, and what your best options are for integrating Google Analytics with WordPress now.
A Brief History: The Era of Google Analytics by Yoast
For many years, Yoast SEO was the undisputed champion of WordPress search engine optimization. Given their expertise in search and data, it was a natural fit for their team, led by Joost de Valk, to develop a plugin that solved a common problem for website owners: adding the Google Analytics tracking code to a WordPress site without touching code.
The "Google Analytics by Yoast" plugin was born out of this need. It was lightweight, effective, and straight to the point. Its primary functions were to:
- Integrate the Google Analytics tracking code effortlessly across your entire site.
- Provide simple options to enable or disable features like tracking for logged-in users, which prevented your own activity from skewing the data.
- Set up basic event tracking, like file downloads or outbound link clicks.
The plugin was incredibly popular because it did its job perfectly and came from a team that the WordPress community trusted implicitly. It became a staple in the toolbox of millions of website administrators, marketers, and business owners.
The Big Handoff: From Yoast to MonsterInsights
Despite the plugin's success, the team at Yoast found their focus increasingly centered on their flagship Yoast SEO product. SEO is a massive, constantly evolving field, and dedicating the necessary resources to both SEO and a comprehensive analytics plugin became a challenge.
In 2016, a major change happened: the "Google Analytics by Yoast" plugin was acquired by Syed Balkhi, the entrepreneur behind WPBeginner and a range of other highly successful WordPress products like OptinMonster and WPForms.
Why the sale? Yoast wanted to double down on what they do best - SEO. Syed Balkhi's team saw immense potential in the analytics plugin and had a vision to transform it from a simple utility into a full-featured analytics suite. It was a strategic decision that allowed both teams to focus on their core strengths. Following the acquisition, the plugin was rebranded and relaunched as MonsterInsights.
What is MonsterInsights Today?
MonsterInsights isn't just a new name for the old Yoast plugin, it's a completely reimagined product. While the free version still provides the core functionality of connecting your site to Google Analytics, the premium version has evolved into a powerful business intelligence tool that lives right inside your WordPress dashboard.
The core promise of MonsterInsights is to "democratize" analytics, making it easy for non-technical users to find actionable insights without ever leaving their website's admin area.
Key Features of MonsterInsights
The transformation from Yoast's plugin to MonsterInsights brought a host of new features designed for marketers, e-commerce stores, and publishers.
- A Beautiful Reporting Dashboard: The most significant change is the addition of comprehensive, easy-to-read reports inside WordPress. You can see session data, popular pages, referral traffic, and geographic information without logging into Google Analytics.
- Advanced Tracking Made Easy: Setting up sophisticated tracking that once required a developer is now a matter of clicking a few boxes. This includes affiliate link tracking, file download tracking, outbound link clicks, and even form submission tracking (with their Forms addon).
- Enhanced E-commerce Reporting: For Shopify, WooCommerce, or Easy Digital Downloads stores, MonsterInsights offers a powerful e-commerce addon. It tracks revenue, conversion rates, top-selling products, and average order value automatically.
- GDPR and Compliance Tools: With data privacy regulations like GDPR and CCPA, proper analytics setup is crucial. MonsterInsights includes an addon to help make your use of Google Analytics compliant, including features for "cookie-less" tracking and easier anonymization of data.
- Custom Dimensions and Performance Tracking: You can set up custom dimensions to track things like logged-in users, authors, or post types. The performance addon also lets you control the sample rate and site speed analytics directly.
Essentially, the new owners took the solid foundation built by Yoast and constructed a comprehensive analytics powerhouse on top of it. While the simple "add the code" functionality still exists, MonsterInsights has become much more about bringing powerful reporting directly into the WordPress user experience.
Exploring Alternatives to MonsterInsights
While MonsterInsights is a fantastic tool, it might be more than what some people need, especially with its premium pricing model. Thankfully, the WordPress ecosystem is full of great alternatives. Here are a few top contenders for adding Google Analytics to your site.
1. Site Kit by Google
This is Google's official plugin for WordPress. Its biggest advantage is that it combines several of Google’s key services into one simple dashboard.
- What it does: Site Kit seamlessly connects your site to Google Analytics, Search Console, AdSense, and PageSpeed Insights.
- Pros: It's 100% free, developed and maintained by Google so you can trust its reliability and security, and the unified dashboard gives you a quick overview of organic search performance alongside website traffic. Setup is incredibly simple through Google authentication.
- Cons: The reporting inside WordPress is less detailed and customizable than MonsterInsights. It's designed to give you highlights and direct you back to the main Google platforms for deeper analysis.
Who it's for: Site Kit is perfect for bloggers, small business owners, and anyone who wants a simple, free, and official way to connect to Google's ecosystem without all the bells and whistles of a premium plugin.
2. ExactMetrics
If you look at ExactMetrics and MonsterInsights side-by-side, you'll see a lot of similarities. In fact, it was another plugin acquired and developed by Syed Balkhi's team. It positions itself as a slightly more advanced or "power-user" focused tool, but the user experience is quite familiar.
- What it does: Like MonsterInsights, it adds Google Analytics tracking and provides a comprehensive dashboard within WordPress. It emphasizes providing real-time stats and "actionable insights."
- Pros: Boasts a very similar feature set to MonsterInsights, including e-commerce tracking, forms addon, and custom dimensions. It sometimes offers different integrations or reporting styles that appeal to a certain type of user.
- Cons: The shared heritage with MonsterInsights can make choosing between them confusing. The core product and pricing strategies are quite similar.
Who it's for: Marketers and business owners who want the robust, in-dashboard reporting that MonsterInsights offers but perhaps prefer the interface or specific feature bundles that ExactMetrics provides. It's worth comparing them directly if you're in the market for a premium solution.
3. The Manual Method (for Purists)
For those who hate the idea of adding another plugin, you can always add the Google Analytics tracking code manually. This method is fast, lightweight, and ensures you have zero plugin bloat.
- What it does: You place the Google Analytics global site tag (gtag.js) script directly into your theme's files so it loads on every page.
- How to do it: The best way is to use a child theme and add the script to your
functions.phpfile using a proper hook. Here's a quick example of what that code would look like:
add_action('wp_head', 'add_ga_tracking_script'),
function add_ga_tracking_script() { ?>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=GA_MEASUREMENT_ID"></script>
<script>
window.dataLayer = window.dataLayer || [],
function gtag(){dataLayer.push(arguments),}
gtag('js', new Date()),
gtag('config', 'GA_MEASUREMENT_ID'),
</script>
<?php }Just remember to replace GA_MEASUREMENT_ID with your actual ID. A simpler, but less robust method, is to use a dedicated lightweight plugin like "Insert Headers and Footers" to paste the code without editing theme files.
- Pros: Completely free and adds virtually zero performance overhead. You maintain full control over the script.
- Cons: You get no reporting inside WordPress at all. Every analysis requires logging into the Google Analytics website. You also miss out on all the automated advanced tracking (like file downloads) that plugins offer. If you add it directly to your parent theme's files without a child theme, your changes will be erased the next time you update your theme.
Who it's for: Developers and tech-savvy website owners who are comfortable working with code, prioritize site performance above all else, and prefer to do all of their analysis directly within the Google Analytics platform.
So, Which Option is Right For You?
Choosing the right way to integrate Google Analytics depends entirely on your needs and technical comfort level.
- For an easy, all-in-one solution with powerful reports inside WordPress, MonsterInsights is the clear successor to the Yoast legacy and a market leader for a reason.
- For a simple, free, and Google-official method, Site Kit by Google is an excellent and trustworthy choice.
- For a minimalist approach with no extra plugins, the manual method gives you the basics but requires you to manage everything yourself.
Final Thoughts
The "Google Analytics by Yoast" plugin didn't disappear - it evolved. Its transition to MonsterInsights marked a shift from a simple utility to a full-blown analytics dashboard within WordPress, offering depth and features that serve the needs of modern marketers and business owners. While there are plenty of other great alternatives available, its legacy remains in the powerful and user-friendly tool it has become.
Setting up analytics is just the first step. The real challenge is often piecing together the full story by combining website analytics with data from your other tools - like Shopify, HubSpot, Salesforce, or your ad platforms. Instead of hopping between a dozen tabs to understand performance, we built Graphed to connect all your marketing and sales data sources in one place. You can instantly create real-time dashboards and pull critical reports using simple, natural language, turning hours of tedious reporting work into a simple 30-second task.
Related Articles
Looker Studio vs Metabase: Which BI Tool Actually Fits Your Team?
Looker Studio and Metabase both help you turn raw data into dashboards, but they take completely different approaches. This guide breaks down where each tool fits, what they are good at, and which one matches your actual workflow.
How to Create a Photo Album in Meta Business Suite
How to create a photo album in Meta Business Suite — step-by-step guide to organizing Facebook and Instagram photos into albums for your business page.
Is Google Analytics and Data Analytics the Same?
Is Google Analytics and data analytics the same? No — Google Analytics is one tool, data analytics is the broader discipline. Here is the difference.