---
title: "WT SEO Meta templates - Content, seo templates for Joomla content articles - WebTolk websites development, Joomla Extensions"
description: "This plugin adds variables with data from Joomla content categories and articles and their custom fields, which can be processed by the main WT SEO Meta templates plugin."
url: "https://web-tolk.ru/en/dev/joomla-plugins/wt-seo-meta-templates-content"
date: "2026-06-08T18:13:21+00:00"
language: "en-GB"
---

![WT SEO Meta templates - Content](https://web-tolk.ru/images/swjprojects/projects/21/en-GB/cover.jpg)

---

# WT SEO Meta templates - Content

- **Categories:** [Joomla plugins](https://web-tolk.ru/en/dev/joomla-plugins), [Joomla 4 - Joomla 6extensions](https://web-tolk.ru/en/dev/rasshireniya-dlya-joomla-4)
- **Version:** 2.0.4
- **Date:** 02 December 2025

18767 8058 CTR 233% Plg Free

[Download](https://web-tolk.ru/en/get?element=wt_seo_meta_templates_content)[Versions](https://web-tolk.ru/en/dev/joomla-plugins/wt-seo-meta-templates-content/versions)[GitHub](https://github.com/sergeytolkachyov/WT-SEO-Meta-templates---Content)

This plugin adds variables with data from Joomla content categories and articles and their custom fields, which can be processed by the main WT SEO Meta templates plugin. The plugin parameters allow you to set a single template for all categories and / or articles, according to which the text of the <title> tag and the text of the meta tag description will be formed. If the plugin parameters are disabled completely, the it will simply generate variables that you can use when filling in the <title> and meta-description manually.

![WT SEO Meta templates - Content](https://web-tolk.ru/images/swjprojects/projects/21/en-GB/icon.jpg)

## Description

For this plugin to work, you need to install the main plugin [WT SEO Meta templates](https://web-tolk.ru/en/dev/joomla-plugins/dev/joomla-plugins/wt-seo-meta-templates.html)

## SEO Variables from Joomla content article for template

- **{CC_ARTICLE_ID}** - Article Id
- **{CC_ARTICLE_TITLE}** - Article title
- **{CC_ARTICLE_HITS}** - Article hits
- **{CC_ARTICLE_CATEGORY_TITLE}** - Article category title
- **{CC_ARTICLE_INTRO}** - Article intro text trimmed to the specified number of characters
- **{CC_ARTICLE_AUTHOR}** - Article author

### Article custom fields

- **{CC_ARTICLE_FIELD_XXX_TITLE}** - Field title, where "XXX" - is field id. For examlpe, {CC_ARTICLE_FIELD_14_TITLE}
- **{CC_ARTICLE_FIELD_XXX_VALUE}** - Field value, where "XXX" - is field id. For examlpe, {CC_ARTICLE_FIELD_14_VALUE}
- **{CC_ARTICLE_FIELD_XXX}** - Field's both title and value separated by space, where "XXX" - is field id. For examlpe, {CC_ARTICLE_FIELD_14}. If field title is "Color", and value is \"red\", then this short-code outputs "Color red".

## SEO Variables from Joomla content category for template

- **{CC_CATEGORY_TITLE}** - Category title
- **{CC_CATEGORY_ID}** - Category id
- **{CC_PARENT_CATEGORY_TITLE}** - Parent category title

### Category custom fields

- **{CC_CATEGORY_FIELD_XXX_TITLE}** - Field title, where "XXX" - is field id. For examlpe, {CC_CATEGORY_FIELD_14_TITLE}
- **{CC_CATEGORY_FIELD_XXX_VALUE}** - Field value, where "XXX" - is field id. For examlpe, {CC_CATEGORY_FIELD_14_VALUE}
- **{CC_CATEGORY_FIELD_XXX}** - Field's both title and value separated by space, where "XXX" - is field id. For examlpe, {CC_CATEGORY_FIELD_14}. If field title is "Color", and value is "red", then this short-code outputs "Color red".

## Plugin settings overview

### Meta tags templates for Joomla content categories

#### Category <title> tag

 Override all <title> categories globally using the templateIf enabled - all the Joomla content categories <title> will be replaced by**seo tempalte**<title> tag template for Joomla content categoriesThis is a your own seo template for categories <title> tag in content categories.

#### Categories Meta-description

 Override the template globally for all meta description in categoriesIf enabled - all the Joomla content category's meta descriptions will be replaced by **seo tempalte**Override only empty meta description categories by the template.This means if the Meta Description field in the category is not filled in.Categories meta description templateThis is a your own seo template for categories meta description in Joomla content.

### Meta tags templates for Joomla content articles

#### <title> tag for article

 Override the template globally for all articles <title>If enabled - all the Joomla **content articles** <title> will be replaced by **seo tempalte**Override only empty <title> products by the template.This means if the "Browser Page Title" field in the article is not filled in.<title> template for the Joomla content article.This is a your own seo template for article's <title> in content. For example, "{CC_ARTICLE_ID} - {CC_ARTICLE_HITS} - {CC_ARTICLE_AUTHOR}", or any other.

#### Meta-description for products

 Override the template globally for all meta description productsIf enabled - all the **Joomla content article** meta-descriptions will be replaced by seo tempalteOverride only empty meta description in articles by the template.This means if the Meta description field in the article is not filled in.Template meta description for the Joomla content article.This is a your own seo template for Joomla content articles meta-description.

#### Sample php file for custom SEO variables

File `plugins/system/wt_seo_meta_templates_content/src/Extension/customvariables/customvariable.php`

```
<?php
/**
 * @package     WT SEO Meta Templates
 * @subpackage  WT SEO Meta Templates - Content
 * @version     1.4.0
 * @Author      Sergey Tolkachyov, https://web-tolk.ru
 * @copyright   Copyright (C) 2022 Sergey Tolkachyov
 * @license     GNU General Public License v3.0
 * @since       1.0
 */
// No direct access
defined('_JEXEC') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;

/**
* Here we PERFORM ALL CHECKS on categories or products as we need to INDEPENDENTLY,
* in order not to try, for example, to get information about an article in the form of a category, etc.
*/

// Add a new custom variable
$variables[] = [
	'variable' => 'YOUR_CUSTOM_VARIABLE',
	'value'    => 'Custom value for SEO variable',
];

/**
 * Change a varibale
 */
for ($i = 0; $i <= count($variables); $i++)
{
	if ($variables[$i]['variable'] == 'YOUR_CATEGORY_NAME')
	{
		$variables[$i]['value'] = $variables[$i]['value'] . ' + CUSTOM VALUE FROM CUSTOM FILE';
	}
}
```

### Please note!

The provider plugin variables are only available on Content pages. In templates, you can use variables from all plugin providers whose variables are available globally. For example, MyCitySelector variables (names of cities, regions, countries).

## Joomla

 **Extension type:** Plugin **Folder:** System **Joomla version:** 3.9, , 3.10, 4.0, 4.1, 4.3.1, 5.0.0, 6.0.0, 6.0.1

## Gallery

![...](https://web-tolk.ru/en/dev/joomla-plugins/images/swjprojects/projects/21/en-GB/gallery/usgRuuICvNg.jpg)

![...](https://web-tolk.ru/en/dev/joomla-plugins/images/swjprojects/projects/21/en-GB/gallery/DoNzR7j4XaX.jpg)

![...](https://web-tolk.ru/en/dev/joomla-plugins/images/swjprojects/projects/21/en-GB/gallery/oVEDulSa2jp.jpg)

![...](https://web-tolk.ru/en/dev/joomla-plugins/images/swjprojects/projects/21/en-GB/gallery/mEDvzRUcBbF.jpg)

## What's new

 2025-12-02 13:09:07

Addition

### Minor edits

Additional processing of potential errors is provided.

---

## Related extensions

[!\[WT SEO Meta templates\](https://web-tolk.ru/images/swjprojects/projects/18/en-GB/icon.jpg) WT SEO Meta templates](https://web-tolk.ru/en/dev/joomla-plugins/wt-seo-meta-templates)

[!\[WT SEO Meta templates - Virtuemart\](https://web-tolk.ru/images/swjprojects/projects/19/en-GB/icon.jpg) WT SEO Meta templates - Virtuemart](https://web-tolk.ru/en/dev/joomla-plugins/wt-seo-meta-templates-virtuemart)

[!\[WT SEO Meta templates - My City Selector\](https://web-tolk.ru/images/swjprojects/projects/20/en-GB/icon.jpg) WT SEO Meta templates - My City Selector](https://web-tolk.ru/en/dev/joomla-plugins/wt-seo-meta-templates-my-city-selector)

[!\[WT SEO Meta templates - JoomShopping\](https://web-tolk.ru/images/swjprojects/projects/22/en-GB/icon.jpg) WT SEO Meta templates - JoomShopping](https://web-tolk.ru/en/dev/joomla-plugins/wt-seo-meta-templates-joomshopping)

[!\[WT SEO Meta templates - Phoca Gallery\](https://web-tolk.ru/images/swjprojects/projects/34/en-GB/icon.jpg) WT SEO Meta templates - Phoca Gallery](https://web-tolk.ru/en/dev/joomla-plugins/wt-seo-meta-templates-phoca-gallery)

## JSON-LD Schema

```json
{
    "@context": "https://schema.org",
    "@type": "BreadcrumbList",
    "@id": "https://web-tolk.ru/#/schema/BreadcrumbList/17",
    "itemListElement": [
        {
            "@type": "ListItem",
            "position": 1,
            "item": {
                "@id": "https://web-tolk.ru/en",
                "name": "Home"
            }
        },
        {
            "@type": "ListItem",
            "position": 2,
            "item": {
                "@id": "https://web-tolk.ru/en/dev",
                "name": "Joomla extensions"
            }
        },
        {
            "@type": "ListItem",
            "position": 3,
            "item": {
                "@id": "/en/dev/joomla-plugins",
                "name": "Joomla plugins"
            }
        },
        {
            "@type": "ListItem",
            "position": 4,
            "item": {
                "name": "WT SEO Meta templates - Content"
            }
        }
    ]
}
```

```json
{
    "@context": "https://schema.org",
    "@graph": [
        {
            "@type": "Organization",
            "@id": "https://web-tolk.ru/#/schema/Organization/base",
            "name": "WebTolk",
            "url": "https://web-tolk.ru/",
            "logo": {
                "@type": "ImageObject",
                "@id": "https://web-tolk.ru/#/schema/ImageObject/logo",
                "url": "images/webtolk-1080p.jpg",
                "contentUrl": "images/webtolk-1080p.jpg",
                "width": 1920,
                "height": 1080
            },
            "image": {
                "@id": "https://web-tolk.ru/#/schema/ImageObject/logo"
            },
            "sameAs": [
                "https://github.com/WebTolk",
                "https://github.com/sergeytolkachyov",
                "https://vk.com/web_tolk",
                "https://vk.com/webtolkru",
                "https://tenchat.ru/sergeytolkachyov",
                "https://t.me/sergeytolkachyov",
                "https://t.me/webtolkru"
            ]
        },
        {
            "@type": "WebSite",
            "@id": "https://web-tolk.ru/#/schema/WebSite/base",
            "url": "https://web-tolk.ru/",
            "name": "WebTolk websites development, Joomla Extensions",
            "publisher": {
                "@id": "https://web-tolk.ru/#/schema/Organization/base"
            }
        },
        {
            "@type": "WebPage",
            "@id": "https://web-tolk.ru/#/schema/WebPage/base",
            "url": "https://web-tolk.ru/en/dev/joomla-plugins/wt-seo-meta-templates-content",
            "name": "WT SEO Meta templates - Content, seo templates for Joomla content articles - WebTolk websites development, Joomla Extensions",
            "description": "This plugin adds variables with data from Joomla content categories and articles and their custom fields, which can be processed by the main WT SEO Meta templates plugin. ",
            "isPartOf": {
                "@id": "https://web-tolk.ru/#/schema/WebSite/base"
            },
            "about": {
                "@id": "https://web-tolk.ru/#/schema/SoftwareApplication/base"
            },
            "inLanguage": "en-GB",
            "breadcrumb": {
                "@id": "https://web-tolk.ru/#/schema/BreadcrumbList/17"
            }
        },
        {
            "@type": "SoftwareApplication",
            "name": "WT SEO Meta templates - Content",
            "url": "https://web-tolk.ru/en/dev/joomla-plugins/wt-seo-meta-templates-content",
            "description": "This plugin adds variables with data from Joomla content categories and articles and their custom fields, which can be processed by the main WT SEO Meta templates plugin. The plugin parameters allow you to set a single template for all categories and / or articles, according to which the text of the &lt;title&gt; tag and the text of the meta tag description will be formed. If the plugin parameters are disabled completely, the it will simply generate variables that you can use when filling in the &lt;title&gt; and meta-description manually.",
            "applicationCategory": "Joomla plugins",
            "softwareVersion": "2.0.4",
            "downloadUrl": "https://web-tolk.ru/en/get?element=wt_seo_meta_templates_content",
            "image": "https://web-tolk.ru/images/swjprojects/projects/21/en-GB/icon.jpg",
            "operatingSystem": "ANY",
            "interactionStatistic": [
                {
                    "@type": "InteractionCounter",
                    "interactionType": "https://schema.org/DownloadAction",
                    "userInteractionCount": 18767
                },
                {
                    "@type": "InteractionCounter",
                    "interactionType": "https://schema.org/ViewAction",
                    "userInteractionCount": 8059
                }
            ],
            "mainEntityOfPage": {
                "@type": "WebPage",
                "url": "https://web-tolk.ru/en/dev/joomla-plugins/wt-seo-meta-templates-content"
            },
            "softwareRequirements": "Joomla",
            "applicationSubCategory": "Joomla plugins, Joomla 4 - Joomla 6extensions",
            "isAccessibleForFree": true
        }
    ]
}
```
