---
title: "Feature: #84760 - TypoScript conditions for site and siteLanguage"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-84760"
source: "Changelog/9.3/Feature-84760-TypoScriptConditionsForSiteAndSiteLanguage.rst"
typo3-version: "9.3"
typo3-major: 9
type: "feature"
issue: 84760
forge: "https://forge.typo3.org/issues/84760"
tags: ["TypoScript"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #84760 - TypoScript conditions for site and siteLanguage {#feature-84760}

See [forge#84760](https://forge.typo3.org/issues/84760)

## Description {#description}

Two new TypoScript conditions have been added which makes it possible to interact on the new site configuration.

**Condition for the properties of a site object**

The identifier of the site name is evaluated:

```typoscript
[site("identifier") == "someIdentifier"]
	page.30.value = foo
[global]
```

**Condition for the site language**

Any property of the current site language is evaluated:

```typoscript
[siteLanguage("locale") == "de_CH.UTF-8"]
	page.40.value = bar
[global]
```
