apply_filters( 'document_title_parts', array $title )
Filters the parts of the document title.
Description Description
Parameters Parameters
- $title
-
(array) The document title parts.
- 'title'
(string) Title of the viewed page. - 'page'
(string) Optional. Page number if paginated. - 'tagline'
(string) Optional. Site description when on home page. - 'site'
(string) Optional. Site title when not on home page.
- 'title'
Source Source
Changelog Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Change the title for a specific page ID:
Make sure your add_filter() comes before the get_header() in your template file if you adding a title filter for that template file.
Feedback
It’s bad practice to do
add_filter
in your template file. These kind of calls should live in your theme’sfunctions.php
file instead. — By infostreams —