How to create a Sitemap for a specific marker or Label to increase Page Rank

How to create a Sitemap for a specific marker or Label to increase Page Rank
Google Page Rank

A blog with good page rank indicate the popularity and value to search engine and visitors. Domain authority is a factor which can be shown by Page Rank. As a blogger we adopt many tricks to increase our page rank but it depends on various factors such as, Quality content, backlinks, internal linking, online reputation etc. However many blog getting higher rank only for backlinks and internal linking which is also known as inbound link that helps the blog to increase crawl rate and page view. Beside of this there are another factor which is known as label or category that helps to influence rank. We would call it marker that often waste link juice.

If we look through robots.txt file then you will see it by default link markers are not indexed by search crawler. If a link block by search crawler then how internal link will bring advantage for you, it is a very good question. For this reason I have brought very important trick that will help to increase your all post’s page rank.  


Why to create a Sitemap for a specific marker

We have heard about HTML sitemap that shows links to all the articles of the specific marker and we will use it to solve the problem. I am sure you are confused that what I want to say? Suppose you have written an article about ‘’Optimization of Search Engine’’ and through the marker it will turn into ‘’Search Engine Optimization’’ so that readers will noticed about all the related topic and can read easily. But adding the page link of the marker is not value to SEO. So we would add the sitemap instead of the link of the marker which help to increase page rank. 


Creating a Sitemap for a specific marker?

After applying this trick all of your internal link to the category page would be strong which will make easier to gain page rank. So we will learn how to make sitemap for specific marker? If you follow the above method of linking to the category page, then all your blog posts will gain strength and a higher ranking in search results. Now the question is how to create a sitemap for specific marker. This is very simple to do. Follow the steps below carefully.
 
Step 1 Log in to your Blogger Account and Go to your Blogger Dashboard

Step 2 Navigate to Pages> New Page> blank page

Step 3   Switch to HTML.

Step 4 Now paste the code below into the body post and hit the publish button

<script type="text/javascript">
var numposts = 100;
var standardstyling = true;
function showrecentposts(json) {
  for (var i = 0; i < numposts; i++) {
    var entry = json.feed.entry[i];
    var posttitle = entry.title.$t;
    var posturl;
    if (i == json.feed.entry.length) break;
    for (var k = 0; k < entry.link.length; k++) {
      if (entry.link[k].rel == 'alternate') {
        posturl = entry.link[k].href;
        break;
      }}
    posttitle = posttitle.link(posturl);
    if (standardstyling) document.write('<li>');
    document.write(posttitle);}
    if (standardstyling) document.write('</li>');
}
</script>
<ul>
<script src="http://www.bloggerspice.com/feeds/posts/default/-/SEO%20Tips?orderby=published&amp;alt=json-in-script&amp;callback=showrecentposts&amp;max-results=999"></script></ul>

Customization

  • Replace www.bloggerspice.com with your blog URL
  • Replace SEO%20Tips with your label.
Go Up