pre_get_document_title filter-hook . WP 4.4.0
Filters the document title before it is generated.
Passing a non-empty value will short-circuit wp_get_document_title(), returning that value instead.
Usage
add_filter( 'pre_get_document_title', 'filter_function_name_8782' ); function filter_function_name_8782( $title ){ // filter... return $title; }
- $title(string)
- The document title.
Default: empty string
Changelog
Since 4.4.0 | Introduced. |
Where the hook is called
wp-includes/general-template.php 1138
$title = apply_filters( 'pre_get_document_title', '' );