Description
The “xclusive_blog_title” filter allows to change the default blog title. Version 1.1.0+.
A plugin (or theme) can add a filter with the code:
<?php add_filter( 'xclusive_blog_title', 'filter_function_name' ); ?>
The hook is located in the index.php file.
Example
// apply filter function filter_xclusive_blog_title( $title ) { return __( 'New Blog Title' ); } add_filter('xclusive_blog_title', 'filter_xclusive_blog_title');
Note: $title is a string.