skip to Main Content

Snippet: Alter The Logo Alt & Title Attribute

// Alter the logo alt and title attribute
add_filter( 'totaltheme/header/logo/text', my_logo_title() {
	return 'MY CUSTOM TITLE';
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend WPCode)
Back To Top