Site logo

Archived topic

How to change navigation logo alt?

3 replies · Started by Michal on October 27, 2017

Viewing posts 1–4 of 4

Hello,

I would like to know, how to change alt of my main navigation(sticky+static) logo. I figured out, how to change url by adding "generate_logo_href" filter, but I dont want alt of the logo to be same as my site title, because logo url leads to another website. Thank you very much :-) Happy GP premium user.

Hi there,

You can try this filter: generate_logo_title

add_filter( 'generate_logo_title', 'tu_change_logo_alt' );
function tu_change_logo_alt() {
    return 'Your alt title';
}

Let me know :)

It works! Thank you very much :-)

You're very welcome!

This archived topic is closed to new replies.