skip to Main Content

Alter The Logo Alt & Title Attribute

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