Site logo

Archived topic

Cant edit ALT on image..?

1 reply · Started by Marcos on July 10, 2019

Viewing posts 1–2 of 2

Hi there,

the logo title and its alt tag uses the Site Title. So you can either change that in Customizer > Site Identity or use this filter to change them:

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

https://docs.generatepress.com/article/adding-php/

This archived topic is closed to new replies.