BLOGGER MAIN STYLISH SITEMAP KAISE SUBMIT KARE

BLOGGER MAIN STYLISH SITEMAP KAISE SUBMIT KARE


साइटमैप क्या है? साइट मैप का क्या अर्थ है? SITEMAP एक वेब साइट के पृष्ठों की एक सूची है। साइट मानचित्र एक वेबसाइट की सामग्री का एक मॉडल है जो उपयोगकर्ताओं और खोज इंजन दोनों को साइट पर नेविगेट करने में मदद करने के लिए डिज़ाइन किया गया है। एक साइट का नक्शा एक वेब साइट की सामग्री का एक दृश्य या पाठयोजित मॉडल है जो उपयोगकर्ताओं को उस साइट के माध्यम से नेविगेट करने की अनुमति देता है जो वे खोज रहे हैं, जिस तरह से एक पारंपरिक भौगोलिक मानचित्र लोगों को उन स्थानों को खोजने में मदद करता है जिन्हें वे वास्तविक रूप में देख रहे हैं। साइट का नक्शा एक प्रकार की इंटरेक्टिव तालिका है|


HOW TO SUBMIT SITEMAP :- ⬇️⬇️⬇️⬇️

There are two types of sitemap:- 

  1. HTML SITEMAP
  2. .XML SITEMAP

Xml Sitemap Have 4 Subparts:-

  1. Mobile sitemap
  2. Video sitemap
  3. Image sitemap
  4. News sitemap

Difference Between HTML sitemap and XML sitemap :-

HTML sitemap is used by website crawler and user also. HTML sitemap is customizable by admin of blog. HTML sitemap is like a Index Page of blog. HTML sitemap is show the way (navigate) the user to their respective destination. BIG E-COMMERCE WEBSITE like Amazon, Flipkart, alibaba, mi, etc. Uses the HTML sitemap to navigate the costomers and helping to buy the product by the costomer.



XML sitemap is used by crawler only. XML sitemap cannot be usable for user. XML sitemap is present in root directory. The crawler is come on the site. Crawler tells us a question 'HOW MANY PAGES ARE THERE IN LAST MODIFICATION'. XML sitemap is give the website information to the crawler for indexing the page. 



Conclusion:- sitemap is a bot they can help to index our blog as soon as possible. Both sitemap is very important to website for indexing in Google.


HOW TO CREATE THE BLOG

STEP 1 :- GO TO BLOGGER
DASHBOARD>>pages>>New page



Step 2: Enter "Site Map" or "Table Of Content" or anything suitable for you in the Page title field.

Step 3: Switch to HTML mode


How To Create HTML Sitemap Page In Blogger (With Infographics)


Step 4: Enter the following codes inside the blank field.
Note: Clear any default code inside the HTML field before pasting the provided code below, if there are some.

Note: Dismiss any type of errors.

Step 5. Configuration
- Replace http://www.yourblog.blogspot.com with your blog URL. If your blog URL is http make sure it's http in the code and if it's https make sure it's https in the code, okay! Just copy your blog URL and replace the one in the red in the code given below, as simple as that.


Code

<script type='text/javascript'>
var postTitle = new Array();
var postUrl = new Array();
var postPublished = new Array();
var postDate = new Array();
var postLabels = new Array();
var postRecent = new Array();
var sortBy = "titleasc";
var numberfeed = 0;
function bloggersitemap(a) {
    function b() {
        if ("entry" in a.feed) {
            var d = a.feed.entry.length;
            numberfeed = d;
            ii = 0;
            for (var h = 0; h < d; h++) {
                var n = a.feed.entry[h];
                var e = n.title.$t;
                var m = n.published.$t.substring(0, 10);
                var j;
                for (var g = 0; g < n.link.length; g++) {
                    if (n.link[g].rel == "alternate") {
                        j = n.link[g].href;
                        break
                    }
                }
                var o = "";
                for (var g = 0; g < n.link.length; g++) {
                    if (n.link[g].rel == "enclosure") {
                        o = n.link[g].href;
                        break
                    }
                }
                var c = "";
                if ("category" in n) {
                    for (var g = 0; g < n.category.length; g++) {
                        c = n.category[g].term;
                        var f = c.lastIndexOf(";");
                        if (f != -1) {
                            c = c.substring(0, f)
                        }
                        postLabels[ii] = c;
                        postTitle[ii] = e;
                        postDate[ii] = m;
                        postUrl[ii] = j;
                        postPublished[ii] = o;
                        if (h < 10) {
                            postRecent[ii] = true
                        } else {
                            postRecent[ii] = false
                        }
                        ii = ii + 1
                    }
                }
            }
        }
    }
    b();
    sortBy = "titledesc";
    sortPosts(sortBy);
    sortlabel();
    displayToc();
}
function sortPosts(d) {
    function c(e, g) {
        var f = postTitle[e];
        postTitle[e] = postTitle[g];
        postTitle[g] = f;
        var f = postDate[e];
        postDate[e] = postDate[g];
        postDate[g] = f;
        var f = postUrl[e];
        postUrl[e] = postUrl[g];
        postUrl[g] = f;
        var f = postLabels[e];
        postLabels[e] = postLabels[g];
        postLabels[g] = f;
        var f = postPublished[e];
        postPublished[e] = postPublished[g];
        postPublished[g] = f;
        var f = postRecent[e];
        postRecent[e] = postRecent[g];
        postRecent[g] = f
    }
    for (var b = 0; b < postTitle.length - 1; b++) {
        for (var a = b + 1; a < postTitle.length; a++) {
            if (d == "titleasc") {
                if (postTitle[b] > postTitle[a]) {
                    c(b, a)
                }
            }
            if (d == "titledesc") {
                if (postTitle[b] < postTitle[a]) {
                    c(b, a)
                }
            }
            if (d == "dateoldest") {
                if (postDate[b] > postDate[a]) {
                    c(b, a)
                }
            }
            if (d == "datenewest") {
                if (postDate[b] < postDate[a]) {
                    c(b, a)
                }
            }
            if (d == "orderlabel") {
                if (postLabels[b] > postLabels[a]) {
                    c(b, a)
                }
            }
        }
    }
}
function sortlabel() {
    sortBy = "orderlabel";
    sortPosts(sortBy);
    var a = 0;
    var b = 0;
    while (b < postTitle.length) {
        temp1 = postLabels[b];
        firsti = a;
        do {
            a = a + 1
        } while (postLabels[a] == temp1);
        b = a;
        sortPosts2(firsti, a);
        if (b > postTitle.length) {
            break
        }
    }
}
function sortPosts2(d, c) {
    function e(f, h) {
        var g = postTitle[f];
        postTitle[f] = postTitle[h];
        postTitle[h] = g;
        var g = postDate[f];
        postDate[f] = postDate[h];
        postDate[h] = g;
        var g = postUrl[f];
        postUrl[f] = postUrl[h];
        postUrl[h] = g;
        var g = postLabels[f];
        postLabels[f] = postLabels[h];
        postLabels[h] = g;
        var g = postPublished[f];
        postPublished[f] = postPublished[h];
        postPublished[h] = g;
        var g = postRecent[f];
        postRecent[f] = postRecent[h];
        postRecent[h] = g
    }
    for (var b = d; b < c - 1; b++) {
        for (var a = b + 1; a < c; a++) {
            if (postTitle[b] > postTitle[a]) {
                e(b, a)
            }
        }
    }
}


function displayToc() {
    var a = 0;
    var b = 0;
    while (b < postTitle.length) {
        temp1 = postLabels[b];
        document.write("");
        document.write('<div class="post-archive"><h4>' + temp1 + '</h4><div class="ct-columns">');
        firsti = a;
        do {
            document.write("<p>");
            document.write('<a " href="' + postUrl[a] + '">' + postTitle[a] + "");
            if (postRecent[a] == true) {
                document.write(' - <strong><span>New!</span></strong>')
            }
            document.write("</a></p>");
            a = a + 1
        } while (postLabels[a] == temp1);
        b = a;
        document.write("</div></div>");
        sortPosts2(firsti, a);
        if (b > postTitle.length) {
            break
        }
    }
}
</script>
<script src="http://www.yourblog.blogspot.com/feeds/posts/summary?alt=json-in-script&max-results=9999&callback=bloggersitemap" type="text/javascript"></script>


-------------------------------------------------------------------


Step 6: Under Page settings,> Click on "Options" inside Search Description field add page description. Note: some Blogger themes these days don't have descriptions on the pages page.
Step 7: Click on Options > under Reader comments > select Don't allow > Done.




If you've not added "Pages" Gadget to your blog, then proceed to step 8 Below. But if you've already added Pages Gadget to your blog, jump to Step 10.

Step 8: On your blogger dashboard go to Layout>>Add a Gadget, under the "Cross-column. Add Pages Gadget at the cross column just under the "header " see the infographic below for more information.










Step 9: When you click on "Add a Gadget from step 8, a window will pop up, scroll down till you find the "Pages" Gadget among the list of Gadgets, click on the + sign at the extreme right of it.







Step 10: Page configuration. Another window will pop up from step 9 above, Check the checkbox for all the pages you would like to show on your blogger blog. Save and that is it! Go to your blog and click on sitemap or whatever name you've given it, you'll have a beautiful sitemap.
Note: If you've already added Pages Gadget to your blog, Go to  Layout>>Edit the Pages Gadget that you've already added and configure it as below, check the checkbox beside the Sitemap and save. You're done!! 










IPL LIVE - T20 (2020) INDIA IPL UPDATES, LIVE SCORE, HEADLINES

Post a Comment

Post a Comment (0)

Previous Post Next Post