Archived topic
H1 as page title
19 replies · Started by Anonymous on October 19, 2015
Viewing posts 16–20 of 20
is it possible to set the site title as H1?
is it possible?
You can do that using GP Hooks :)
1. Go to "Customize > Site Identity" and hide the site title and tagline.
2. Go to "GP Hooks" and add the following in the "Before Header Content" hook area:
<div class="site-branding">
<?php if ( is_home() ) : ?>
<h1 class="main-title" itemprop="headline"><a href="http://www.androidicecreamsandwich.de/" title="Android-Ice Cream-Sandwich" rel="home">Android-Ice Cream-Sandwich</a></h1>
<?php else : ?>
<p class="main-title" itemprop="headline"><a href="http://www.androidicecreamsandwich.de/" title="Android-Ice Cream-Sandwich" rel="home">Android-Ice Cream-Sandwich</a></p>
<?php endif; ?>
<p class="site-description">DER Android Blog</p>
</div>
Then check the "Execute PHP" checkbox and you should be good to go :)
works fine
Awesome :)
This archived topic is closed to new replies.