PDA

View Full Version : How to add meta tag in blogger



thesheild
07-29-2018, 09:29 PM
How to Add Meta Tags in Blogger

Meta tags in blogger are the core core part of seo (search engine optimization) of your blog. They not only help search engines to know about the content of the website but also help human readers to know what is the main niche/topic of your blog. There are of different type but the most important and widely used are the tags used for keywords and description.

The first one is for main keywords of your content and second one is for description of your content. The second one is more important than first because many search engines have left ranking pages based upon keywords. Google has also announced that they are now not using keywords tags for indexing web pages. Therefore,you can leave keywords tags but be sure to add description tags.

To add meta tags in blogger home page follow these steps.

Step 1- First you need to log in to your Blogger Dashboard

Step 2- Now Go to Theme Section and Click on Edit HTML

Step 3- New Window will popup Simply click CTRL + F and Search for “<head>” (without Quotes) tag in the search box and press enter

Step 4- Now Add the below code in the beginning of “Head” tag

<title>
<b:if cond=’data:blog.pageType == &quot;index&quot;’>
<data:blog.pageTitle/>
<b:else/>
<b:if cond=’data:blog.pageType != &quot;error_page&quot;’>
<data:blog.pageName/>
<b:else/>
Page Not Found | <data:blog.title/>
</b:if>
</b:if>
</title>
<b:if cond=’data:blog.metaDescription’>
<meta expr:content=’data:blog.metaDescription’ itemprop=’description’/>
</b:if>
<b:include data=’blog’ name=’all-head-content’/>
<meta content=’all’ name=’robots’/>
<meta content=’all’ name=’googlebot’/>
<meta content=’index, follow’ name=’robots’/>
<meta content=’1 days’ name=’revisit-after’/>
<meta content=’English’ name=’language’/>
<meta content=’blogger’ name=’generator’/>
<meta content=’general’ name=’rating’/>
<meta content=’Google verification code’ name=’google-site-verification’/>
<meta content=’Being/yahoo verification code’ name=’msvalidate.01’/>
<meta content=’yandex verification code’ name=’yandex-verification’/>
<meta content=’width=device-width, initial-scale=1.0,maximum-scale=1′ name=’viewport’/>
<meta content=’text/html; charset=utf-8′ http-equiv=’Content-Type’/>
<meta content=’width=device-width, initial-scale=1.0′ name=’viewport’/>
<meta content=’IE=9; IE=8; IE=7; IE=EDGE; chrome=1′ http-equiv=’X-UA-Compatible’/>
<b:if cond=’data:blog.pageType == &quot;index&quot;’>
<b:if cond=’data:blog.searchLabel’>
<meta content=’noindex,nofollow’ name=’robots’/>
</b:if>
</b:if>
<b:if cond=’data:blog.pageType == &quot;archive&quot;’>
<meta content=’noindex,nofollow’ name=’robots’/>
</b:if>
<b:if cond=’data:blog.isMobile’>
<meta content=’noindex,nofollow’ name=’rob/>
</b:if>