Hi,
How would I change the alt text for my logo? I don’t want it to say the title of my site, I want something else in there.
Thank you!
Steve
Hey Steve!
Thank you for using the theme!
Please add this on functions.php:
add_filter('avf_logo_alt', 'avf_change_logo_alt');
function avf_change_logo_alt($alt) {
$alt = "New Alternate Text Here";
return $alt;
}
Change the value.
Cheers!
Ismael
Worked perfectly!
Thanks Ismael!