---
title: "Breaking: #102745 - Removed ContentObject stdWrap hook"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-102745-1705054472"
source: "Changelog/13.0/Breaking-102745-RemovedContentObjectStdWrapHook.rst"
typo3-version: "13.0"
typo3-major: 13
type: "breaking"
issue: 102745
forge: "https://forge.typo3.org/issues/102745"
tags: ["Frontend", "PHP-API", "FullyScanned", "ext:frontend"]
rendered: "2026-09-25T23:17:45+00:00"
---

# Breaking: #102745 - Removed ContentObject stdWrap hook {#breaking-102745-1705054472}

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

## Description {#description}

The ContentObject stdWrap hook `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['stdWrap']`
has been removed in favor of the more powerful PSR-14 events:

-   `\TYPO3\CMS\Frontend\ContentObject\Event\BeforeStdWrapFunctionsInitializedEvent`
-   `\TYPO3\CMS\Frontend\ContentObject\Event\AfterStdWrapFunctionsInitializedEvent`
-   `\TYPO3\CMS\Frontend\ContentObject\Event\BeforeStdWrapFunctionsExecutedEvent`
-   `\TYPO3\CMS\Frontend\ContentObject\Event\AfterStdWrapFunctionsExecutedEvent`

## Impact {#impact}

Any hook implementation registered is not executed anymore
in TYPO3 v13.0+. The extension scanner will report usages.

## Affected installations {#affected-installations}

TYPO3 installations with custom extensions using the hook.

## Migration {#migration}

The hook is removed without deprecation in order to allow extensions
to work with TYPO3 v12 (using the hook) and v13+ (using the new events)
when implementing the events as well without any further deprecations.
Use the [PSR-14 events](https://docs.typo3.org/permalink/changelog:feature-102745-1705054628)
to allow greater influence in the functionality.
