Experience with SEO Blogspot


SEO
SEO (Search Engine Optimization) is always a challenge for many bloggers, even among professionals. With SEO tricks blogspot is the less. I also read the article or in the field but also quite confused. Blogging was a few years, has tried many tricks to apply for the improved SEO for blogger and also at stunned because only a single link in the sitemap index, I have a little experience want to share with you. 1. Changing the display format title page (Page title) Usually when you open an article on the bar tab will display as blog subject: Post subject. According to many opinions, so good for SEO, you should change it as Post subject: Text blog.

Navigate to the code:

<title><data:blog.pageTitle/></title>

and replace it with:

<b:if cond='data:blog.pageType == "item"'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>


When you appear in search results look good, then more.
2. Keyword and description meta tag



In addition to the meta tag for authentication services such as sitemaps (Google, Yahoo, Bing), Alexa ... and

<meta content='index' name='ROBOTS'/>
I just added the meta keyword and description.

Usually we would add two cards in front <b:skin><![CDATA[ form:

<meta name="description" content="Description blog" />
<meta name="keywords" content="The main keywords" />


But if doing so will cause duplicate meta keywords and description for the post. You can see this when checking in Webmaster Tools, Diagnostics, HTML suggestions.





duplicate meta

We will customize a bit of code.

<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta name="description" content="Description blog" />
<meta name="keywords" content="The main keywords" />
</b:if>

3. Show post title

Usually bloggers often using H2 or H3 heading tag to the article title. However, as recommended, we should use H1 to good SEO.

Go to the Edit HTML, Expand Widget Templates, searches on

<b:if cond='data:post.title'> to look to the code:
<b:if cond='data:post.title'>
<h3 class='post-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link' expr:title='data:post.title'><data:post.title/></a>
<b:else/>
<b:if cond='data:blog.pageType != "item"'>
<a expr:href='data:post.url' expr:title='data:post.title'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>


Depending on the template that this code may differ slightly. You change H2 (or H3) H1, further searches on H2 (or H3) to change it to H1 in the regulation of post-title CSS.
Updated: How on yet solved the problem H1 tag for the post title but it is not enough. Actually we only need to tag H1 to the title page and static pages article (item_page and static_page) because we just Google index these pages. If you do so will result in duplicate H1 tag index and archive pages (a very serious error but not the best for SEO, then we should be treated thoroughly: D).
You replace all the code above with a new more complete code:

<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
<b:if cond='data:post.title'>
<h3 class='post-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link' expr:title='data:post.title'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url' expr:title='data:post.title'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>
<b:else/>
<h1 class='post-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link' expr:title='data:post.title'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</h1>
</b:if>
<b:else/>
<h1 class='post-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link' expr:title='data:post.title'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</h1>
</b:if>


Explanation: Here, I will use tag H3 (H2 tag differs from the sidebar and footer) for the title page is not item_page and static_page and of course when these pages as it is H1 tag.

Next we need a little editing in the CSS.

Scroll down to the CSS rules for the article (it may not be identical to your template, but as so often)

..post h3 {...}
.post h3 a, .post h3 a:visited {...}
.post h3 a:hover {...}


If you've done any way I originally introduced it would be H1

We changed as follows:


.post h1, .post h3 {...}
.post h1 a, .post h1 a:visited, .post h3 a, .post h3 a:visited {...}
.post h1 a:hover, .post h3 a:hover {...}


So is completed.
Thanks iTechPlus found duplicate errors and admin-seo Heading tab, the administrator of the admin-seo.blogspot.com helped me improve this code.

Actually what I wrote on this blog has been mentioned a lot but can you still do not know much or not paying attention. His goal in doing this mainly to the number of links in the sitemap index is as much of the good and real with Blogger +, the rate is relatively good. Of course, the content is in his element SEO is extremely important for a blog.

I wish you success.


Source : http://admin-seo.blogspot.com/

0 comments:

Post a Comment