---
title: "Feature: #82260 - Separation of search result path into title,uri,linkTag"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-82260"
source: "Changelog/9.0/Feature-82260-SeparationOfSearchResultPathIntoTitleUriLink.rst"
typo3-version: "9.0"
typo3-major: 9
type: "feature"
issue: 82260
forge: "https://forge.typo3.org/issues/82260"
tags: ["Frontend", "ext:indexed_search"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #82260 - Separation of search result path into title,uri,linkTag {#feature-82260}

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

## Description {#description}

For styling and individual html markup of the result of indexed_search it is now possible to get the path information
in separate keys. Introduced keys: `pathTitle`, `pathUri`.
Enclose the whole result in a link or show the destination (link) as string. (e.g. bootstrap list item).

## Impact {#impact}

The protected method `linkPage()` returns an array with the "uri" and "target".
To build an ATag outside of the fluid template, you have to use the introduced wrapper `linkPageATagWrap()`.

Using the keys in your fluid template:

```html
<div class="path">{row.path}</div>
<div class="path-title">{row.pathTitle}</div>
<div class="path-uri">{row.pathUri}</div>
```
