How To Create Sitemap Page In Blogger blogspot (Full Tutorial)
Hello Friends , Welcome to my site
Today I Will Show you to how to create sitemap page In Blogger
2. Click On Pages Then Click On New Page
3. Now See the page in html edit mode then remove all the code and paste below code
4. Paste The Below Code
5. Change Your Website URL
6. Now Click On Option Button then select the "Don't aloow , Hide Existing " And Click On Done Below
7. Finally Click On Publish
HTML Code -
Today I Will Show you to how to create sitemap page In Blogger
Steps To Create Sitemap Page In Blogger
1. First Login To Blogger.com Dashboard2. Click On Pages Then Click On New Page
3. Now See the page in html edit mode then remove all the code and paste below code
4. Paste The Below Code
5. Change Your Website URL
6. Now Click On Option Button then select the "Don't aloow , Hide Existing " And Click On Done Below
7. Finally Click On Publish
HTML Code -
<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>
<br />
<ul>
<script src="https://www.badaloot.com/feeds/posts/default?orderby=published&alt=json-in-script&callback=showrecentposts&max-results=999"></script>
</ul>

