---
title: "AddNewsToMenuProcessor"
manual: "News system"
version: "main"
permalink: "https://docs.typo3.org/permalink/georgringer/news:dataprocessing-addnewstomenuprocessor@main"
source: "Tutorials/ExtendNews/DataProcessing/AddNewsToMenuProcessor.rst"
rendered: "2026-09-23T19:24:09+00:00"
---

# AddNewsToMenuProcessor {#dataprocessing-addnewstomenuprocessor}

<!-- TODO: no Markdown rendering for "versionadded" -->

With version 7.2 a new data processor, AddNewsToMenuProcessor has
been added which is useful for detail pages to add the news record as
fake menu entry.

This data processor can be used to add the currently displayed news record
to a pages breadcrumb.

## Usage {#usage}

```typoscript
10 = menu
10 {
    as = breadcrumbMenu
    special = rootline
    # [...] further configuration
}
20 = add-news-to-menu
20.menus = breadcrumbMenu,specialMenu
```

The property `menus` is a comma-separated list of
`MenuProcessors` that shall have the currently displayed news record
attached as fake menu entry.

## Examples {#examples}

See [Tutorial: Breadcrumb based on data processing and Fluid](https://docs.typo3.org/permalink/georgringer/news:breadcrumbfluid@main).
