xclusive_site_branding

Description

The “xclusive_site_branding” filter allows to change the default site branding name at the bottom of the page. Version 1.1.0+.

A plugin (or theme) can add a filter with the code:

<?php add_filter( 'xclusive_site_branding', 'filter_function_name' ); ?>

The hook is located in the _inc/custom.php file.

Example

// apply filter
function filter_xclusive_site_branding( $site_name ) {
	return __( 'The Site Name' );
}
add_filter('xclusive_site_branding', 'filter_xclusive_site_branding');

Note: $site_name is a string.


Leave a Reply

Your email address will not be published. Required fields are marked *