Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #291146

    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

    #291420

    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

    #291706

    Worked perfectly!

    Thanks Ismael!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Logo alt text’ is closed to new replies.