Remove H1 Tag from Site Title
-
Hi!
I did an SEO audit on the site and it flagged that my Site Title has the H1 tag (tagline has the h2 tag) which is causing all my posts to have a duplicate H1 tag when I add a title to any page or post.
I found the below code online which was meant to remove the H1 tag and replace with H3 so as not to interfere with the H1 tag – but when I check the page via chromes ‘page source’ function, the title is still showing as H1.
Do I require different code for the SELA theme specifically?
Thank you
Following code found on: https://www.ads-software.com/support/topic/remove-site-title-h1-tag-from-pages/
add_filter( ‘tc_site_title_tag’, ‘my_title_tag’ );function my_title_tag($content) {
return “h2”; //Change to h3 if needed
}
- The topic ‘Remove H1 Tag from Site Title’ is closed to new replies.