---
title: "Add the Google Site Verification Meta Tag to Joomla - Code Snippets"
description: "Google Search Console is where you find out which keywords bring you traffic, which pages are indexed, and which ones are broken. But before it shows"
url: "https://www.tassos.gr/docs/code-snippets/howto/seo-meta-tags/google-site-verification"
date: "2026-08-02T22:59:06+00:00"
language: "en-GB"
---

[ Home ](https://www.tassos.gr/index.php?option=com_content&view=category&layout=blog&id=24&Itemid=1088) / [ Code Snippets ](https://www.tassos.gr/index.php?option=com_content&view=category&id=120) / [ How-to Guides ](https://www.tassos.gr/index.php?option=com_content&view=category&id=125) / [ SEO &amp; Meta Tags ](https://www.tassos.gr/index.php?option=com_content&view=category&id=141)

#  Add the Google Site Verification Meta Tag to Joomla

Google Search Console is where you find out which keywords bring you traffic, which pages are indexed, and which ones are broken. But before it shows you anything, Google asks you to prove that you own the site, usually with a verification meta tag that has to live in the &lt;head&gt; of your homepage. Editing your template's index.php works until the next template update wipes it and Google silently drops your verification. Hopefully, you don't need an extra plugin either. You can add the Google site verification meta tag to your Joomla site using Tassos Code Snippets, and it survives every template update.

## [What is the Google site verification meta tag](#what-is-the-google-site-verification-meta-tag)

It is a single **&lt;meta&gt;** tag containing a unique token issued by Google Search Console. Google reads it on your homepage to confirm that you control the domain before granting access to its search data.

## [How to get the Google site verification meta tag](#how-to-get-the-google-site-verification-meta-tag)

You need a Google account. If you have already added the property, you can re-open the verification screen at any time.

1. Go to [Google Search Console](https://search.google.com/search-console/) and sign in.
2. Click **Add property** and choose the **URL prefix** option.
3. Enter your full site URL, including `https://`, and click **Continue**.
4. In the verification screen, expand **HTML tag** under *Other verification methods*.
5. Copy the full meta tag. It looks like `<meta name="google-site-verification" content="xxxxxxxxxxxxxxxxxxxx" />`.

## [How to Add the Google Site Verification Meta Tag to Joomla](#how-to-add-the-google-site-verification-meta-tag-to-joomla)

1. Install **Tassos Code Snippets** if it is not installed already.
2. Go to Joomla Administrator.
3. Open **Components → Tassos Code Snippets**.
4. Click **New**.
5. Give your snippet a descriptive title like "Google Site Verification".
6. Select **HTML** snippet type.
7. Paste the meta tag you copied from Search Console, replacing the sample token below with your own: ```
    <meta name="google-site-verification" content="xxxxxxxxxxxxxxxxxxxx" />
    ```
8. Select **Site Header** as the "Insertion Method".
9. Publish the snippet.
10. Leave the Conditional Logic tab empty so the tag is present site-wide. Google only checks the homepage, but keeping it everywhere costs nothing and prevents accidental de-verification. Learn more in [Using Snippet Conditional Logic](https://www.tassos.gr/docs/code-snippets/functionality/conditional-logic/).

Congrats! You've successfully added the Google site verification meta tag to your Joomla site without installing another plugin.

You can use the same snippet approach for other verification tags, such as Bing Webmaster Tools (msvalidate.01), Pinterest (p:domain\_verify), or Yandex (yandex-verification). Add each one on its own line inside the same snippet.

## [Verify it Works](#verify-it-works)

Open your homepage, view the page source, and search for "google-site-verification". If the tag is there, go back to Search Console and click **Verify**. If verification fails, confirm the snippet is published, that the token matches exactly, and that you are verifying the same protocol and hostname (with or without www) that your site actually serves.

For more information about snippet types and insertion methods, visit our documentation: <https://www.tassos.gr/docs/tassos-code-snippets/>

 Last updated on Jul 30th 2026 12:07
