document_title_separator filter-hook . WP 4.4.0
Filters the separator for the document title.
Usage
add_filter( 'document_title_separator', 'filter_function_name_1185' ); function filter_function_name_1185( $sep ){ // filter... return $sep; }
- $sep(string)
- Document title separator.
Default: '-'
Changelog
Since 4.4.0 | Introduced. |
Where the hook is called
wp-includes/general-template.php 1217
$sep = apply_filters( 'document_title_separator', '-' );