undkonsorten/typo3-pagetitle-ts

TYPO3 extension to access the final page title, built by the PageTitle API, within TypoScript

1.0.2 2019-04-05 10:42 UTC

This package is auto-updated.

Last update: 2024-04-05 21:56:26 UTC


README

License Release

TYPO3 extension pagetitle_ts

This TYPO3 CMS extension provides a TypoScript hook for getData(). It allows you to insert the final page title, built by the TYPO3 PageTitle API.

Installation

Composer:

composer require undkonsorten/typo3-pagetitle-ts

GitHub:

cd typo3conf/ext
git clone git@github.com:undkonsorten/typo3-pagetitle-ts.git pagetitle_ts

Usage

If your page object is named page within TypoScript, you can include the page title as follows:

page.meta {
  og:title {
    data = pagetitle
    stdWrap < config.pageTitle
    replace = 1
  }
  twitter:title < .og:title
  DC\.title < .og:title
  og:title.attribute = property
}

Of course it's possible to use the date = pagetitle configuration in each other context as well.

License

GPL-2.0