Archived topic
Cant edit ALT on image..?
1 reply · Started by Marcos on July 10, 2019
I am trying to edit the ALT attribute on this image: https://www.seomarketing.co.nz/wp-content/uploads/2019/04/new-seomarketing-logo-transp.png
If you see this, you'll see the ALT attribute is "SEO Auckland", but in the media gallery, I changed this to: SEO Marketing Logo
But it's not updating. Any idea why?


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';
}