apply_filters( ‘document_title_parts’, array $title )

Filters the parts of the document title.

Parameters

$titlearray
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.

Source

$title = apply_filters( 'document_title_parts', $title );

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

  1. Skip to note 4 content

    Make sure your add_filter() comes before the get_header() in your template file if you adding a title filter for that template file.

    <?php
    
    // This filter must be above get_header() to work correctly
    add_filter('document_title_parts', 'callbackFunctionName');
    
    get_header();
    
    ...

You must log in before being able to contribute a note or feedback.