Title tags on internal pages of Blogger

1 replies
  • SEO
  • |
I can get to the title tag of the index page of my Blogger - but how in the world do I get to the title tag of my internal pages?

Anyone know?
#blogger #internal #pages #tags #title
  • Profile picture of the author yukon
    Banned
    First backup the template.

    Note: I haven't tested the custom code below, setup a test blog on blogger & do your testing.

    Look for code similar to this (the code item is the actual blog post/page):

    Code:
    <b:if cond='data:blog.pageType == &quot;item&quot;'>

    Code:
    <data:blog.pageTitle/>




    This code below will let you create a unique page <title> per page type (index, item, archive, static_page), change the Keyword_1, Keyword_2, Keyword_3, Keyword_4, to whatever keywords you want.

    The code below would go in the <head> of the template & replace any existing <title> code.

    Code:
    <b:if cond='data:blog.pageType == &quot;index&quot;'>
    
    <title>Keyword_1 | <data:blog.pageTitle/></title>
    
    <b:else/>
    
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    
    <title>Keyword_2 | <data:blog.pageTitle/></title>
    
    <b:else/>
    
    <b:if cond='data:blog.pageType == &quot;archive&quot;'>
    
    <title>Keyword_3 | <data:blog.pageTitle/></title>
    
    <b:else/>
    
    <b:if cond='data:blog.pageType == &quot;static_page&quot;'>
    
    <title>Keyword_4 | <data:blog.pageTitle/></title>
    
    </b:if>
    {{ DiscussionBoard.errors[6522826].message }}

Trending Topics