apply_filters( 'document_title_parts', array $title )
- Since
- 4.4.0
Filters the parts of the document title.
Compatibility
- WordPress
- since 4.4.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$titlearray- { The document title parts.
@type string $title Title of the viewed page.
@type string $page Optional. Page number if paginated.
@type string $tagline Optional. Site description when on home page.
@type string $site Optional. Site title when not on home page.
}$titlestringTitle of the viewed page.$pagestringOptional. Page number if paginated.$taglinestringOptional. Site description when on home page.$sitestringOptional. Site title when not on home page.
Where this hook fires · 1
wp-includes/general-template.php:1287wp_get_document_title()
Source code
* @type string $title Title of the viewed page. * @type string $page Optional. Page number if paginated. * @type string $tagline Optional. Site description when on home page. * @type string $site Optional. Site title when not on home page. * } */ $title = apply_filters( 'document_title_parts', $title ); $title = implode( " $sep ", array_filter( $title ) ); /** * Filters the document title. *Changelog
Introduced in 4.4.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.0.4 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.