---
title: "Feature: #66070 - Configure anchor for pagination widget"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-66070"
source: "Changelog/7.4/Feature-66070-ConfigureSectionForPaginationWidget.rst"
typo3-version: "7.4"
typo3-major: 7
type: "feature"
issue: 66070
forge: "https://forge.typo3.org/issues/66070"
tags: ["Fluid"]
rendered: "2026-09-18T10:44:28+00:00"
---

# Feature: #66070 - Configure anchor for pagination widget {#feature-66070}

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

## Description {#description}

This feature allows to add a key "section" to the configuration of a fluid pagination widget. The anchor gets appended
to every link of the pagination widget. The "widget.link" viewHelper used by the pagination widget already supports this.

### Examples {#examples}

The following example will render the page browser having a section parameter "#archive" appended to every link

```html
<f:widget.paginate objects="{plantpestWarnings}" as="paginatedWarnings" configuration="{section: 'archive', itemsPerPage: 10, insertAbove: 0, insertBelow: 1, maximumNumberOfLinks: 10}">
[...]
</f:widget.paginate>
```

## Impact {#impact}

If the "section" attribute does not get specified or no configuration is supplied at all then no section parameter
(#section) will get appended to the links and the pagination widget behaves as usual.
