Site logo

Archived topic

H1 as page title

19 replies · Started by Anonymous on October 19, 2015

Viewing posts 1–15 of 20

GP will add the H1 as your page title - this is not working for me

my page title at frontpage is not shown as H1

where i have to change it?

Can you link me to the page possibly?

Nice site!

You're right, the blog page doesn't have a title.

Do you have our Page Header add-on? If so, go to "Appearance > Blog Page Header" and add this in the "Content" box:

<div class="grid-container grid-parent">
    <header class="entry-header">
        <h1 itemprop="headline" class="entry-title">Blog</h1>
    </header>
</div>

now i have Android-Ice Cream-Sandwich twice on my site

Is that what you replaced "Blog" with in the code I gave you? You can add anything there you like :)

<header class="entry-header">
<h1 class="entry-title">Android-Ice Cream-Sandwich</h1>
</header>

this is what i have insert in blog page header -> content

`<div class="grid-container grid-parent">
<header class="entry-header">
<h1 class="entry-title">Android-Ice Cream-Sandwich</h1>
</header>
</div>

<div class="grid-container grid-parent">
    <header class="entry-header">
        <h1 class="entry-title">Android-Ice Cream-Sandwich</h1>
    </header>
</div>

itemprop="headline" is missing at my blog

If you want the itemprop="headline", you would use this:

<div class="grid-container grid-parent">
    <header class="entry-header">
        <h1 itemprop="headline" class="entry-title">Android-Ice Cream-Sandwich</h1>
    </header>
</div>

If you don't want it to say "Android-Ice Cream-Sandwich", you can change it to whatever you like.

What we're doing is adding an overall H1 for you entire blog.

You don't want your individual blog titles to be H1s, as you're only supposed to have one on a page.

If each blog post title was an H1, you would be dinged by Google for having too many.

<div class="grid-container grid-parent">
    <header class="entry-header">
        <h1 itemprop="headline" class="entry-title">Android-Ice Cream-Sandwich</h1>
    </header>
</div>

but when i save it, itemprop="headline" is not been saved and missed

AICS

I'm only seeing it once below the navigation?

Unless you mean your site title as well?

In that case, why not give the Blog a different title?

This archived topic is closed to new replies.