---
title: "Feature: #87748 - Add SiteProcessor"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-87748"
source: "Changelog/9.5.x/Feature-87748-AddSiteProcessor.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Feature: #87748 - Add SiteProcessor

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

## Description

A new Site Processor `\TYPO3\CMS\Frontend\DataProcessing\SiteProcessor` has been introduced which can be used to fetch data from the site entity.

```typoscript
tt_content.mycontent.20 = FLUIDTEMPLATE
tt_content.mycontent.20 {
   file = EXT:myextension/Resources/Private/Templates/ContentObjects/MyContent.html

   dataProcessing.10 = TYPO3\CMS\Frontend\DataProcessing\SiteProcessor
   dataProcessing.10 {
      as = site
   }
}
```

In the Fluid template the properties of the site entity can be accessed

```html
<p>{site.rootPageId}</p>
<p>{site.someCustomConfiguration}</p>
```
