One question I am asked often is how to create a sitemap, where posts are organized by category (label) and link directly to blog posts.
There are several ways this could be achieved, such as manually coding a sitemap, or using a service to generate the feeds for each individual label.
In this article, I'll explain my favourite method for creating a sitemap/table of contents for Blogger blogs: using a modification of Google "Feed Control" to generate a sitemap automatically using the minimal amount of code.
Overview
Creating a sitemap using Google's Feed Control is a relatively simple task. You need not know anything about JavaScript or HTML code in order to use this tutorial: so long as you're able to copy and paste, this should be fairly easy to install!The sitemap we will create will list all post titles from your blog, organized by their category/label on a post page. We can then link to this post page from elsewhere in the Blogger template, such as a link menu beneath the header, or a link list in the sidebar which details links to other important pages of your site.
Once complete, your sitemap will appear something like this, featuring the title of your label, followed by links to each post filed under this category:
You may also like to take a look at the sitemap I've created for Blogger Buster to see how this works in more detail.
Update - Easy install TOC/Sitemap Script for Blogger by Abu Farhan
Abu Farhan has created a very simple Table of Contents/Sitemap script for Blogger users which can be installed very quickly and easily.This alternative script uses only two lines of code, and can easily be pasted into a post page (or even a sidebar widget if preferred). All we need to do is change the URL of our blog.
Once installed, this script automatically parses and displays each post under label headings and displays in alphabetical order. What's more, the latest 10 posts from each category are highlighted with "New" so readers can easily notice the most recent posts.
Unlike my Google Feed Control script, this installation is not limited to 100 posts per category.
Be sure to take a look at this excellent script and installation instructions on Abu's site as this is much easier to install and generated a very clean, organized sitemap with little effort.
Thank you for sharing your script, Abu!
How to create your sitemap with Google Feed Control
There are four main steps to creating a dynamic sitemap with Google Feed Control:- Generate an API key from Google
- Add the template for your sitemap to a post page
- Paste in your API key
- Paste in the URLs for your label feeds
Generate your API key
In order to use Google's Feed Control, you'll need to generate a unique API key for your blog.This key will be unique to your particular blog, and may only be used on the domain you specify during sign-up. If you have multiple blogs and would like to install a sitemap on each blog, you'll need to generate a new API key each time.
Your API key is provided free of charge, and enables you to utilize scripts which are hosted on Google servers (so we don't need to upload and host these scripts elsewhere!).
So, first things first! Generate a Google AJAX API key for your site, and copy this long string to your clipboard (or your favourite text editor) for later use.
Paste the template for your sitemap into a post page
The next step to installing a sitemap is to paste the "template" on which your sitemap will be based into a post page.Simply go to your Blogger dashboard and create a new post. Using the tabs at the top, switch over to the "Edit HTML" section of the post editor (if you do not usually use this function), then paste the following section of code into the content section:
<style type="text/css">
/**
* Suppress everything except for title
*/
#feedControl .gf-snippet,
#feedControl .gf-author,
#feedControl .gf-spacer,
#feedControl .gf-relativePublishedDate {
display : none;
}
</style>
<script type="text/javascript" src="http://www.google.com/jsapi?key=YOUR_API_KEY"></script>
<script type="text/javascript">
/*
* How to use the Feed Control to grab, parse and display feeds.
*/
google.load("feeds", "1");
function OnLoad() {
// Create a feed control
var feedControl = new google.feeds.FeedControl();
// Add blogger label feeds.
feedControl.addFeed("http://URL-OF-YOUR-LABEL-FEED?max-results=100", "TITLE-OF-YOUR-LABEL");
feedControl.addFeed("http://URL-OF-YOUR-LABEL-FEED?max-results=100", "TITLE-OF-YOUR-LABEL");
feedControl.addFeed("http://URL-OF-YOUR-LABEL-FEED?max-results=100", "TITLE-OF-YOUR-LABEL");
feedControl.addFeed("http://URL-OF-YOUR-LABEL-FEED?max-results=100", "TITLE-OF-YOUR-LABEL");
feedControl.addFeed("http://URL-OF-YOUR-LABEL-FEED?max-results=100", "TITLE-OF-YOUR-LABEL");
feedControl.addFeed("http://URL-OF-YOUR-LABEL-FEED?max-results=100", "TITLE-OF-YOUR-LABEL");
feedControl.addFeed("http://URL-OF-YOUR-LABEL-FEED?max-results=100", "TITLE-OF-YOUR-LABEL");
feedControl.addFeed("http://URL-OF-YOUR-LABEL-FEED?max-results=100", "TITLE-OF-YOUR-LABEL");
feedControl.addFeed("http://URL-OF-YOUR-LABEL-FEED?max-results=100", "TITLE-OF-YOUR-LABEL");
feedControl.addFeed("http://URL-OF-YOUR-LABEL-FEED?max-results=100", "TITLE-OF-YOUR-LABEL");
feedControl.setNumEntries(-1);
// Draw it.
feedControl.draw(document.getElementById("content"));
}
google.setOnLoadCallback(OnLoad);
</script>
<div id="content">
Loading, please wait...</div>The <style> section at the head of this code prevents the summary (usually printed by the Feed Control script) being displayed, so that only the linked title is displayed on the sitemap page.You may notice I've also highlighted other sections in bold coloured text. These are the sections we need to edit for your particular blog, as outlined below.
Paste in your unique API key
In the code you have pasted in your post page, you need to replace "YOUR-API-KEY" with the unique API key you generated at the beginning of this tutorial.It is easiest to have your API key copied to your clipboard; then highlight YOUR-API-KEY and key CTRL+V (or CMD+V) to paste the key instead of the phrase.
Paste in the URLs and titles for your Label Feed URLS
This step of the tutorial is a little more complex.We need to paste the URLs of the label feeds we would like to use for the sitemap in place of YOUR-LABEL-FEED-URL, and replace TITLE-OF-YOUR-LABEL with an explanatory title for each relevant line of the Feed Control script.
Each line we need to edit looks like this in the script we have pasted into the post editor:
feedControl.addFeed("http://URL-OF-YOUR-LABEL-FEED?max-results=100", "TITLE-OF-YOUR-LABEL");In total, I have used 10 lines (for 10 different labels) in the template script. If you require more, simply duplicate this line and add your label feed urls and titles as appropriate.Similarly, lines may be deleted if you need to use less than 10 labels for your sitemap.
Your label feed URLs will be something like this:
http://your-blog.blogspot.com/feeds/posts/-/LABEL-NAMEwhere LABEL-NAME is the name of the label you are using in your blog.
or
http://www.yourblog.com/feeds/posts/-/LABEL-NAME
We also need to include the variable "?max-results=100" at the end of the label feed URL to ensure the maximum 100 posts from each label will be displayed. Otherwise, only the first 25 posts will display in our sitemap.
For example, the URL I use to display all posts filed under the Gadgets label is
http://www.bloggerbuster.com/feeds/posts/-/Gadgets?max-results=100If any of your labels include spaces, you must replace the spaces with %20 instead.
Here's another example, using my Customize your Blogger Template label:
http://www.bloggerbuster.com/feeds/posts/-/Customize%20your%20Blogger%20TemplateFinally, the URLs of your label feeds are case sensitive. If you use any capital letters in the names of your Blogger labels, you will need to match these in the label feed URLS.
The LABEL-NAME element of each line is where you need to type the name/title of the label feed. This aspect is not case sensitive, since it is not generated by your label feeds. If you like, you can use a title which is not the same as the label feed to offer a more explanatory title for your readers.
Here is how I have coded the sitemap for Blogger Buster:
<style type="text/css">Once you have finished adding the Label feed URLs and titles to your Sitemap post, you can publish your post and enjoy using your new Blogger sitemap!
/**
* Suppress everything except for title
*/
#feedControl .gf-snippet,.gf-author,.gf-spacer,.gf-relativePublishedDate {
display : none;
}
</style>
<script type="text/javascript" src="http://www.google.com/jsapi?key=MY-API-KEY"></script>
<script type="text/javascript">
/*
* How to use the Feed Control to grab, parse and display feeds.
*/
google.load("feeds", "1");
function OnLoad() {
// Create a feed control
var feedControl = new google.feeds.FeedControl();
// Add blogger label feeds.
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/Customize%20your%20Blogger%20Template?max-results=100", "Customize your Blogger Template");
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/Customize%20your%20Blogger%20Template?start-index=101&max-results=100", "Customize your Blogger Template (Part 2)");
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/Blogger%20News%20and%20Issues?max-results=100", "Blogger News and Issues");
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/Gadgets?max-results=100", "Gadgets");
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/Free%20Blogger%20Templates?max-results=100", "Free Blogger Templates");
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/Resources?max-results=100", "Resources");
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/Custom%20Domains?max-results=100", "Custom Domains");
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/Images%20Icons%20and%20Badges?max-results=100", "Images and Icons");
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/Labels%20Categories%20and%20Tags?max-results=100", "Labels, Categories and Tags");
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/Monetize%20Your%20Blog?max-results=100", "Monetize Your Blog");
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/RSS%20Feeds%20and%20Syndication?max-results=100", "RSS Feeds and Syndication");
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/SEO%20and%20Blog%20Traffic?max-results=100", "SEO and Blog Traffic");
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/Blogger%20Template%20Resources?max-results=100", "Template Resources");
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/Announcements?max-results=100", "Blogger Buster Announcements");
feedControl.setNumEntries(-1);
// Draw it.
feedControl.draw(document.getElementById("content"));
}
google.setOnLoadCallback(OnLoad);
</script>
<div id="content">
Loading, please wait...</div>
Troubleshooting your FeedControl Sitemap
Here are a few issues which you may encounter when installing your sitemap:The sitemap takes ages to load!
This may happen if you use a large number of labels in your sitemap. Few label feeds will load quickly, while many will take a long time to load.
If this is of particular issue, try to reduce the number of labels/feeds in your sitemap.
The sitemap does not display!
If the sitemap does not load at all, this may be due to an error when pasting the initial template code, your API key or a label feed.
The best advice would be to begin the installation again, making sure you use the Edit HTML mode of your post editor and are careful not to accidentally delete any other elements of the code.
You should also take care not to switch to "Compose" mode while editing your sitemap as this sometimes makes involuntary changes to HTML code which could corrupt the sitemap script.
Certain Labels do not display any posts
This may happen in cases where the URL of your label feed is not quite correct, for example, the title is not capitalized, or spaces are not replaced with %20.
In this case, edit your template and check the URL of the offending label feed carefully for any involuntary errors. Make changes as appropriate, and save your template.
I have more than 100 posts filed under a particular label. How can I display all posts?
Google's Feed Control can only be used to display up to 100 posts from a particular feed. In order to display more results, we need to add a new feed variable, in which the start index is 101.
In the Blogger Buster sitemap, for example, I need to display more than 100 posts for the Customize your Blogger Template category. In the line after the first 100 results for this category, I paste a new line where the start index of the feed is the 101st post, like this:
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/Customize%20your%20Blogger%20Template?max-results=100", "Customize your Blogger Template");If your label includes more than 200 posts, you can add a third variable where the start index is 201, and so on.
feedControl.addFeed("http://www.bloggerbuster.com/feeds/posts/default/-/Customize%20your%20Blogger%20Template?start-index=101&max-results=100", "Customize your Blogger Template (Part 2)");
Adding extra content, and styling your sitemap
It is possible to add extra content to your sitemap page, for example, a explanatory paragraph or links to other important pages of your template.Ideally, you should add this content while editing your sitemap in Edit HTML mode. Be sure to add this content above or below your sitemap script to prevent any errors which would prevent the sitemap displaying properly.
If you would like to style elements of the sitemap, you can achieve this using CSS (either by adding to the <style> section in the Sitemap script, or within the <b:skin> section of your Blogger template.
Here are the classes you can use for styling your sitemap:
- #feedControl - the ID for the overall sitemap
- .gf-title - the title of each label
- .gf-author - the author of each post
- .gf-relativePublishedDate - the published date displayed beneath each title
Final Thoughts
I hope this tutorial offers a comprehensive guide to using Google's Feed Control to create a dynamic updating sitemap for your Blogger blog! I understand this is not a simple "one click install" sitemap, though as this sitemap updates automatically each time we create a new post, I find this is the easiest, most flexible option to use.I would love to know of any simpler installations for this sitemap, so if you have written one (or have discovered a tutorial), please feel free to let us know in the comments.







245 Comments:
i don't understand about this widget but i interesting use this
thanks
Nice info amanda
your experimentation very good
looking for BlackBerry Desktop Manager
I had to remove linebreaks from the code before it would work. My only remaining problem is that the "display: none" styling doesn't seem to work. (See here.)
I made Sitemap for blogger too but only use two line script and have categorized by label automatic please visit this link TOC for blogger
thanks , i can do it , but tell us the benefits of it for example add it in google webmaster tools or what ?
The tutorial was very informative. I didn't know that creating a sitemap would be such a complicated process. Thanks you for making it simpler.
Thank you very much for link my small blog to your post.I have one more trick for popular post but still in indonesian language maybe later I'll translate Popular post for blogger.
Thanks again, you are the best.
Can this be added as a HTML/Javascript widget in Blogger?
Cheers
I guess its a good widget or say hack to use for blogger who have less labels or less important categories in their blog.
Anyway Its great. Thanks.
Thanks a lot and thanks to Abu!
It's so easy to use and extremely helpful.
What output does the "Submit Feed As Sitemap" function in Google's "Webmaster Tools" give that's different from this tutorial? TIA.
Thanks for the tut.
Used Abu Farhan's method to get a really great table of contents going. It was super easy to install. Just pasted the two lines of code into an empty post (Edit HTML section), backdated it and then published it and ... that's it. It works.
I have 200+ posts and 16 labels and it doesn't take too terribly long for that page to load.
If you wanna have a look for yourself you can click here.
Abu Farhan is a great blogger from Indonesia and me too!And you are a great blogger too! Thanks for tutorial and let me do this!
To: Raghu (aka Salvatore) Yes. I used the 'Dynamic Feed Control' (Google) within the first sidebar on the item page. See:
http://blog.cidec.ch/2009/08/mitarbeit-in-google-gruppen.html
http://googleajaxsearchapi.blogspot.com/2007/10/ajax-feed-api-addition-dynamic-feed.html
Hi Amanda! A very big thank you to you and Abu Farhan for this. Loads fast, works great and very professional. A nice touch to my blog! Something I have been looking for, for sometime now!
Take Care,
Peter
Hello Amanda,
Do you put this sitemap in your dashbord of Google webmaster' s tool?
Great tutorial: one question - how to make the titel of each category BOLD to make them stand out from the list of posts?
Me again from last question (sorry, I misspelt the word TITLE): h
How to make thumbnail of first image in post display in this feed? I already use the endgageteer one, but it displays only 25 posts max ...
Hello Amanda,
Thanks a lot.works very well.
click here.
wait a moment..
Sir....
Can i create a sitemap for blogger blog?
Hiya,
This is great! I'm using this in the sidebar to list my previous posts, sorted by label (see Mind Over Matter). I have one question: how do I hide the snippet, author and published date?
I'm trying Amanda's version because I want a targeted map of just a few of my labels. Several troubleshooting issues:
1)I edited style in my Blogger layout. .gf-title seems to control the format for the title of each post. What's the code to edit style for each LABEL title?
2) I had the same trouble as Richard -- the "supress" coding isn't working. I also tried display:none for author names in my Blogger layout and that didn't work either.
3)There are a lot of blank lines at the beginning of the post that I don't seem to be able to get rid of.
My trial post is here:
http://thenaturalcapital.blogspot.com/2008/12/index-posts-about-animals-on-natural.html
Update: for some reason display:none works for .gf-snippet but not for .gf-author -- is .gf-author the correct name for the class?
Nice Script and thanks for sharing. I got this from a friend via a link in an e-mail
Walah ga mudeng mba Amanda..!!!
………………….._,,-~’’’¯¯¯’’~-,,
………………..,-‘’ ; ; ;_,,---,,_ ; ;’’-,…………………………….._,,,---,,_
……………….,’ ; ; ;,-‘ , , , , , ‘-, ; ;’-,,,,---~~’’’’’’~--,,,_…..,,-~’’ ; ; ; ;__;’-,
……………….| ; ; ;,’ , , , _,,-~’’ ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ¯’’~’-,,_ ,,-~’’ , , ‘, ;’,
……………….’, ; ; ‘-, ,-~’’ ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;’’-, , , , , ,’ ; |
…………………’, ; ;,’’ ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;’-, , ,-‘ ;,-‘
………………….,’-‘ ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;’’-‘ ;,,-‘
………………..,’ ; ; ; ; ; ; ; ; ; ; ; ;__ ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ‘-,’
………………,-‘ ; ; ; ; ; ; ; ; ; ;,-‘’¯: : ’’-, ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; _ ; ; ; ; ;’,
……………..,’ ; ; ; ; ; ; ; ; ; ; ;| : : : : : ; ; ; ; ; ; ; ; ; ; ; ; ; ,-‘’¯: ¯’’-, ; ; ;’,
…………….,’ ; ; ; ; ; ; ; ; ; ; ; ‘-,_: : _,-‘ ; ; ; ; ; ; ; ; ; ; ; ; | : : : : : ; ; ; .|
……………,’ ; ; ; ; ; ; ; ; ; ; ; ; ; ; ¯¯ ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;’-,,_ : :,-‘ ; ; ;|
…………..,-‘ ; ; ; ; ; ; ; ; ; ; ; ; ; ; ,,-~’’ , , , , ,,,-~~-, , , , _ ; ; ;¯; ; ; ; ; ;|
..…………,-‘ ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;,’ , , , , , , ,( : : : : , , , ,’’-, ; ; ; ; ; ; ; ;|
……….,-‘ ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;’, , , , , , , , ,’~---~’’ , , , , , ,’ ; ; ; ; ; ; ; ;’,
…….,-‘’ ; _, ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ‘’~-,,,,--~~’’’¯’’’~-,,_ , ,_,-‘ ; ; ; ; ; ; ; ; ; ‘,
….,-‘’-~’’,-‘ ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; | ; ; | . . . . . . ,’; ,’’¯ ; ; ; ; ; ; ; ; ; ,_ ; ‘-,
……….,’ ; ;,-, ; ;, ; ; ;, ; ; ; ; ; ; ; ; ; ; ‘, ; ;’, . . . . THAT'S JUST WRONG---‘’’
………,’-~’ ,-‘-~’’ ‘, ,-‘ ‘, ,,- ; ; ; ; ; ; ; ; ‘, ; ; ‘~-,,,-‘’ ; ,’ ; ; ; ; ‘, ;,-‘’ ; ‘, ,-‘,
……….,-‘’ ; ; ; ; ; ‘’ ; ; ;’’ ; ; ; ; ; ; ; ; ; ; ‘’-,,_ ; ; ; _,-‘ ; ; ; ; ; ;’-‘’ ; ; ; ‘’ ; ;’-,
……..,-‘ ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;¯¯’’¯ ; ; ; ; ; ; ; ; , ; ; ; ; ; ; ; ; ;’’-,
……,-‘ ; ; ; ; ; ; ; ,, ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; |, ; ; ; ; ; ; ; ; ; ; ‘-,
…..,’ ; ; ; ; ; ; ; ;,’ ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;|..’-,_ ; ; ; , ; ; ; ; ; ‘,
Im not sure, if this is recommended to be used on blogger. Blogger do automatically sitemap and not need to submit anything.
U miss the "default" in this pharase...
http://your-blog.blogspot.com/feeds/posts/-/LABEL-NAME [u missed the"default"]
please correct it... it's not working...
it should be:
http://your-blog.blogspot.com/feeds/posts/default/-/LABEL-NAME
note: this error under:
Your label feed URLs will be something like this: < in your post.
I think I guess correctly..
http://man-sur.blogspot.com
i use rss and atom feed for google webmaster sitemap
Thank's for your info
hi amanda,
can we put the url of the individual blog posts instead of label url ??
I actually have my business website made out of blogger and there aren't many pages to be classified into labels.
www.MultiProducts.in
Thank you so much for your article, Amanda! It gives me enough hint to overcome my 25-post limit in my Neo Template, after many hours of searching and trying in frustration!
<a href="' + blogurl + 'feeds/posts/default/-/' + label + '?max-results=100">Đăng ký <br/>nhận bài</a>
You are so benevolent!
Thanx for this very useful tips.but its work only limited feed.alternately you can use webmaster.
Hi,
Though, this comment does not apply to this post, I however have a question.
I am looking at having a different backgroud image for each post(only in the POST area and not page).
is it possible to achieve this?
Great post.. Nice tip.. I was needing a sitemap too
i saw that staff while editing essays, thats a very interesting thing.
Really excellent, thank you!
I have a question, is there some way how to display the post titles in reversed order (from earliest to the latest)?
Web! Google! Where is lost the old good maps on paper with the smell of printing paint
Actually, Klodian is right.. Blogger creates a sitemap automatically, with no need to submit anything
woi pendo ng amanda, kuda cuki!!!! macam babi ng itu, pemai baku cuki jo deng kuda ng.
thank's for trik. i like this....!!!
I use rss feed and its very simple.
cool one! Thanks for sharing!
Very informative. Thank you
having a different backgroud image for each post(only in the POST area and not page).
is it possible to achieve this?
Nice tip.. I was needing a sitemap too
having a different backgroud image for each post(only in the POST area and not page).
is it possible to achieve this?
some reason display:none works for .gf-snippet but not for .gf-author -- is .gf-author the correct name for the class?
lost the old good maps on paper with the smell of printing paint
I had the same trouble as Richard -- the "supress" coding isn't working.
schools
you so much for your article, Amanda! It gives me enough hint to overcome my 25-post limit in my Neo Template, after many hours of searching and trying in frustration!
kuda cuki!!!! macam babi ng itu, pemai baku cuki jo deng kuda ng.
thank's for trik. i like this....!!!
backgroud image for each post(only in the POST area and not page).
is it possible to achieve this?
so this is how to create a sitemap with google feed.. so how to get your ex boyfriend back?
backgroud image for each post(only in the POST area and not page).
is it possible to achieve this?
I'd like to create a sitemap for my website too.. Do you have a detailed explanation for this?
is there some way how to display the post titles in reversed order (from earliest to the latest)?
a different backgroud image for each post(only in the POST area and not page).
is it possible to achieve this?
in creating a sitemap, what can google offer us in this situation?
google feed control has been used widely over the worldwideweb :)
You need not know anything about JavaScript or HTML code in order to use this tutorial: so long as you're able to copy and paste, this should be fairly easy to install!
zso this is how to create a sitemap with google feed.. so how to get your ex boyfriend back?
best people locator
a different backgroud image for each post(only in the POST area and not page).
is it possible to achieve this?
different backgroud image for each post(only in the POST area and not page).
is it possible to achieve this?
Amanda! It gives me enough hint to overcome my 25-post limit in my Neo Template, after many hours of searching and trying in frustration!
The post is written in very a good manner and it entails many useful information for me. I appreciated what you have done here. I am always searching for informative information like this. Thanks for sharing with us.
twitter and flickr are still not working on my blog
a different backgroud image for each post(only in the POST area and not page).
is it possible to achieve this?
Amanda! It gives me enough hint to overcome my 25-post limit in my Neo Template, after many hours of searching and trying in frustration!
how to make the titel of each category BOLD to make them stand out from the list of posts?
Nice to see this trick.Sitemap is very important for seo and google index.I will surely try to apply this trick.
Really you have done great job,There are may person searching about that now they will find enough resources by your post.I like this blog..
Blogger how when you visit my site,
My Site created for men's health,
Here the best method for you and get the best Penis Enlargement Pills today.
We all can use a streamlined process for site map creation. This is very helpful.
That's a really good tip about how to create a sitemap with a google feed.
I'm gonna pass this info over to my web design guy to make sure that he knows his onions.
Good tips for making site map.
But i think much better and easy way is to go with online resources to create site map.
hint to overcome my 25-post limit in my Neo Template, after many hours of searching and trying in frustration!
it is not only eye opening rather very beneficial for the people those who want to do something good in his life .
Amanda! It gives me enough hint to overcome my 25-post limit in my Neo Template, after many hours of searching and trying in frustration!
This step is really easy, helped me a lot, thanks.
Google has indexed all my pages after that! Perfect.
I've also highlighted other sections in bold coloured text. These are the sections we need to edit for your particular blog, as outlined below.
HTML code in order to use this tutorial: so long as you're able to copy and paste, this should be fairly easy to install!
it would work. My only remaining problem is that the "display: none" styling doesn't seem to work.
Thank you, I'm looking for this for ages now.
thank you - new resource added to the tool box.
very cool code, i always have to play around with it myself but after this weekend when i'm done Potty Training and have time i will work on it.
This is a topic of my interest. I love reading through your blog, I wanted to leave a little comment to support you and wish you a good continuation. Wishing you the best of luck for all your blogging efforts.
Very Informative tutorial.
It has been really difficult for me to create site map for my website but using this tutorial helped me.
A very big thank you to you and Abu Farhan for this. Loads fast, works great and very professional. A nice touch to my blog! Something I have been looking for, for sometime now!
Simply marvelous!!! Your article provides a fresh new insight to this topic which was yet undiscovered. I must say your research skills are sharp and your narration is interesting. Splendid work…
I'm impressed. You're truly well informed and very intelligent. You wrote something that people could understand and made the subject intriguing for everyone. I'm saving this for future use.
Great stuff from you, man. I've read your stuff before and you're just too awesome. I love what you've got here, love what you're saying and the way you say it. You make it entertaining and you still manage to keep it smart. I cant wait to read more from you. This is really a great blog.
Hello, I am very happy to read your blog. This is another fantastic blog post what I have read. There are so many tools available that it becomes difficult to know which will work. And how best to use them.
I am really thankful to you for the information you have provided. You are helping others to grow their knowledge by sharing such a valuable information you have. This post is amazing & I'm glad for it.
I'm glad to have found this post as its such an interesting one! I am always on the lookout for quality posts and articles so i suppose im lucky to have found this! I hope you will be adding more in the future…
This is a great way to make a sitemap, many thanks for sharing.
Thanks for the nice blog. It Was Very useful for me. Keep Such sharing ideas in the Future as well. Actually This Was What I Was looking for, and I am glad to cam here ! Thanks for Sharing the information with us Such.
You raise a lot of questions in my head; you wrote an excellent post, but this post is also mind provoking, and I will have to think about it a bit more; I will return soon.
It is so lucky to read your blog,it is full of useful message.I wish we both can do better in the future.It great honor if you can visit our website,and give us some suggestion.
I came to your article from another article and am really interested in this learning about this.Thanks for sharing.
Thousands of Factory Audited China Suppliers, China Manufacturers, China Products are seeking Trusted Importers and Exporters on tradetuber.com
G24 LED Lamp
Book of Ra online spielen ist einfach genial Digger ich liebe dich machen wir Liebe mit Book of ra?
Used Abu Farhan's method to get a really great table of contents going. It was super easy to install. Just pasted the two lines of code into an empty post (Edit HTML section), backdated it and then published it and ... that's it. It works.
Thanks for posting this. i really had good time reading this.
Thanks for posting this. i really had good time reading this.
This site is cool. i visit here evaryday.
The knowledge you provide is a real asset we have. Keep on posting such valuable articles. I like your blog design as well.
3528 LED Strips -More 3528 LED Strips manufacturers, 3528 LED Strips makers, 3528 LED Strips suppliers,3528 LED Strips exporter & 3528 LED Strips factories seek qualified 3528 LED Strips purchasers ,3528 LED Strips global buyers & 3528 LED Strips agents on TradeTuber.com.
335 & Piranha LED Strips -More 335 manufacturers, 335 makers, 335 suppliers,335 exporter & 335 factories seek qualified 335 purchasers ,335 global buyers & 335 agents on TradeTuber.com.
wow. man you are a smart guy !
This is really amazing:)
Yeah...this one sounds really amazing. I try i as soon i have some time:)
Thanks!
At first I would congratulate you on writing such a brilliant piece of write-up. You have got some exceptional writing skills that have made your site worth reading.
GU10 LED spotThousands of Factory Audited China Suppliers, China Manufacturers, China Products are seeking Trusted Importers and Exporters on tradetuber.com
tenant screening believes that Clearly more piece like this are needed. The flawless execution of the article, its drive to share comprehensive knowledge to its readers are acts which the commenter feels a need for recognition. There will be more developments in this field that's coming up and the readers feels honored to be part of it.
Just implemented this and so far so good. Thanks!
The commenter believes that readers can find and use so many valuable information here. Surely I will recommend your site. You really helped me a lot and contributed o my researches. I want to mention how wonderful your work are and its contibution in our society today. I wish to see more in the future. more power
Medical Bankruptcy
locking compression plate -Thousands of Factory Audited China Suppliers, China Manufacturers, China Products are seeking Trusted Importers and Exporters on tradetuber.com
Having problems setting this up. Is anyone else had problems?
Nice post!
http://www.thinkup.org/index.php/forums/member/231237/
http://sustainablelafayette.net/forum/index.php?action=profile;u=651302
http://ekcomicsandgames.com/index.php/member/192177/
http://californiacenter.org/member/209670/
http://www.strengtheningfamiliesillinois.org/index.php/member/247241/
http://www.dlmethod.com/forum/member/286746/
http://www.parentswithattitude.com/index.php/member/140585/
http://www.spectrumpublications.com/index.php/member/234530/
http://www.rameniac.com/member/257152/
http://www.ruralintelligence.com/index.php/member/94057/
http://yesprep.org/member/133951/
http://griffithsleadershipsociety.com/index.php/member/148001/
http://whatdoyouconsiderlethal.com/forum/member/196251/
http://www.lakeridgesoftware.com/forum/member.php?u=165822
http://www.logitechusers.com/member.php?u=249509
Thanks for such a nice article. It includes very informative information about the article. In the sitemap error of my website linkbullets.com helped me a lot
This is a great looking blog and I really think that the content is very good also. I will be coming back here again at some point.
This is a wicked website and I really enjoyed the topic that you have written about. I really needed to know how to setup a site map.
Wow, what a lot of useful information - I have bookmarked this page for future reference - thanks for sharing!!!
sex
porn
free porn
porn
free sex
free sex
porno
escort bayan
I love your website! Did you create this yourself or did you outsource it? I’m looking for design that’s similar so that’s the only reason I'm asking. Either way keep up the nice work I was impressed with your content really
This is interesting, I didn't know you can create a sitemap with google feed system.
The google feed control really is a powerful system to create your site maps. easy to do to.
Private Guides - Find private tour guides worldwide on LocalGuiding.com
Magnetic Jewelry -Best Quality Magnetic Jewelry and Magnet Therapy Products - Over 1300 Items that are good for Health as well as Beauty - Free Worldwide Shipping.
Web sites should be designed consistently, so navigation models should follow the flow of the site map. Therefore, the first section in the site map should be the first link in the navigation bar.
Tarah of Removalist
bead bracelet -Best Quality Magnetic Jewelry and Magnet Therapy Products - Over 1300 Items that are good for Health as well as Beauty - Free Worldwide Shipping.
This is a really wonderful and useful article. Thanks and keep up the good work.
I had some issues with this myself. Can anyone elaborate?
I stumbled across your website by accident or maybe not lol. Thanks for the uplifting encouraging articles.
now i also got a nice sitemap. thanks!
I just have to say, I enjoy reading your post. Maybe you could let me know how I can bookmark this? I feel I should let you know I found your page through yahoo.
I m really impressed that theres so much about this subject thats been uncovered and you did it so well, with so much class. Good one you, man! Really great stuff here.
Shore Condos Austin
Good post. Very impressive writing. Thanks for sharing.
Travesti,
Escort Bayan,
Travesti,
Escort Bayan,
Adana Escort Bayan,Ankara Escort Bayan,
Antalya Escort Bayan,istanbul anadolu yakası Escort Bayan,
istanbul avrupa yakası Escort Bayan,
Bursa Escort Bayan,
tekirdağ Escort Bayan,
Kayseri Escort Bayan,
izmir Escort Bayan,
mersin Escort Bayan
ankara Escort Bayan,
istanbul anadolu yakası Escort Bayan
Escort Bayan Forum,
İstanbul Travestileri,
Escort Bayan,
Travesti,
Escort Bayan Ankara,
Escort Bayan İstanbul,
T8 SMD Tube -More T8 SMD Tube manufacturers, T8 SMD Tube makers, T8 SMD Tube suppliers,T8 SMD Tube exporter & T8 SMD Tube factories seek qualified T8 SMD Tube purchasers ,T8 SMD Tube global buyers & T8 SMD Tube agents on TradeTuber.com.
nice tips for making site map these are quite helpful
3528 SMD Strip -More 3528 SMD Strip manufacturers, 3528 SMD Strip makers, 3528 SMD Strip suppliers,3528 SMD Strip exporter & 3528 SMD Strip factories seek qualified 3528 SMD Strip purchasers ,3528 SMD Strip global buyers & 3528 SMD Strip agents on TradeTuber.com.
Really fantastic blog. Please keep updating with great posts like this one. I enjoyed reading and gained many things with this one.
Good tutorial for a non Wordpress site. Thank you.
I agree with Google Plus ones comment
Thank you, thats very interesting information. I need to share with my friends.
Jaipur content writers
seo services london
I enjoyed the education. I am an educator as well, I show you how to get over break up and how to get your ex back. I can use this tool to lay out a processes for my students Thanks again. How to get over a break up.
I like your post. I learned a lot of new things and I'm looking forward to see more like this. Thank you. here is nice tutorial for webmasters using wordpress
I like your post. I learned a lot of new things and I'm looking forward to see more like this. Thank you. here is nice tutorial for webmasters using wordpress
Great post keep it up
Tattoo Removal Federation
That's a very helpful blog post.
Thank you for sharing your knowledge!
Julian
Right now I went upon your blog and I figured it's the most beneficial free info on the net! It’s also nice to find out that smart individuals such as you are taking on blogging just to share useful information to others…
Mmm.. good to be here in your article or post, whatever, I think I should also work hard for my own website like I see some good and updated working in your site. seo services
This is an awesome post. Creating sitemap is always important for any website. It helps to search engine to rank website higher on SERPs and as well as to crawl your website regularly.
This is such a great news "The sitemap we will create will list all post titles from your blog, organized by their category/label on a post page. We can then link to this post page from elsewhere in the Blogger template, such as a link menu beneath the header, or a link list in the sidebar which details links to other important pages of your site" I hope more will come.
Rental Background Check
Nice interesting blog I hope there will be more up coming blog like this. Thank you!!
This is a smart blog. I mean it. You have so much knowledge about this issue, and so much passion. You also know how to make people rally behind it, obviously from the responses. You`ve got a design here thats not too flashy, but makes a statement as big as what youre saying. Great job, indeed.
I have read everything on the shortlist and I know its quality is incredible. Every writer has aspects of style I genuinely covet. They are extraordinary women and extraordinary writers. credit repair attorney
Google Feed Control is based on Google Ajax Feed API and allow consuming many RSS from any source in a very simple way.
I believe this website has got some very excellent information for everyone.
Credit repair blog
Your post is really good Home remedies for diarrhea Cure ringworm naturally Home remedies for mouth ulcers Prevent dizziness White spots on skin Stomach gas Hard stool treatment Health benefits of almonds Cure ear infection Under eye wrinkles Natural laxative foods Baby ear infection Common digestive system diseases and disorders Get pregnant easily Home remedies for pneumonia Health benefits of papaya Home remedies for common fever Home remedies for cough Home remedies for boils Home remedies for burns Ear wax removal Home remedies for anorexia Home remedies for bursitis Smooth and glowing skin Heartburn relief
Many thanks for your exhaustive post. I didnot imagine you could create a sitemap for Blogger platform.
It’s a good blog though...
Finally my sitemap works lol
Umm yeah, I'm not exactly buying it. Thanks for the post though.
Nice post.Thank you for taking the time to publish this information very useful!
wow.. very nice share.. i am going to try it now..
thanks for sharing
Took a lot of time to read but I really found this very interesting and informative, thank you buddy for sharing.
SEO Company
SEO Services
SEM Services
I think we need to bring more ideas for this purpose. Involvement of young people can be handy in this regard. I am happy to find a good post here. Thank you
Social Media Marketing Services
Pay Per Click Services
Link Building Services
Content Writing Services
Thanks for this read mate. Well, this is my first visit to your blog! But I admire the precious time and effort you put into it, especially into interesting articles you share here!
Logo Design
Cheap Logo Design
Affordable Logo Design
Thanks for your marvelous posting! I quite enjoyed reading it, you are a great author.I will be sure to bookmark your blog and definitely will come back from now on. I want to encourage that you continue your great job, have a nice day!
Logo Design Contests
Cheap Logo Design
Essay Help
Buy Essay
Nice and very helpful information i have got from your post. Even your whole blog is full of interesting information which is the great sign of a great blogger.
Cheap Custom Essays
Help With Essay
Write My Essay
Dissertation Help
I really agree with the facts that you have shared on this post. An interesting topic like this really enhances reader's mind to have more effective decisions over a certain issue. penis enlargement penis enlargement pills VigRX Plus
nive info i like to read in this page thanks...gemscool
E991
I guess it's a widget or say hack for blogger using fewer labels or categories are less important in their blog.if this is recommended for use in blogger. Blogger map automatically and need not submit anything.
If you get a little confused about Ray Ban Wayfarer Sizes, you will appreciate the following information about how sizing works with a couple of the more popular wayfarer models.The RB 2132 in the 52 mm size is a smaller fit than the RB 2140 in the 50 mm size because the frame size of the 2132 is generally smaller than the 2140. The ray ban wayfarers sizes, extremely popular in the eighties have been making a strong come back and is resurfacing as one of Ray Bans most popular designs.
Medical bankruptcy is a general term for the cause, why sign someone had to insolvency. Medical bankruptcy is not a legal concept and not technically file a medical bankruptcy. If you have a lot of medical bills and have to file for bankruptcy, you would either a Chapter 7 bankruptcy or Chapter 13 bankruptcy register, and would include all of your medical bills along with your other unsecured debts. They would be released at the end of your bankruptcy, as well as an unsecured credit card or loan. You are required to list all your creditors, including medical bills, if you file bankruptcy.
Now I got it lol
Novoline gratis spielen
Roulette
This is such a brilliant idea! I just want to say thank you for the information you have to shared. Just continue to write such wonderful topics like this. I will be your faithful reader. Thank you again.legal credit repair
Thank you so much for this tutorial.I wanted so much to build a sitemap and now with your help I finally did it.You are a great writer and teacher so that is why I will visit your website every day.
wow.. this is just wonderful.. There are sites available also which will guide you are may also create of sitemap of your site.
tipps zum flirten online und frauen verführen sowie ins bett bekommen http://frauverfuehren.de/
Yesterday my friend asked me if I know to do a site map and I looked all day long for a good information. It seems that your site is the only one who has something like this. Thank you so much for that.
i will try this script..
thanks for sharing
Thank you for showing and explaining how to create a google Stop smoking site map.I really needed to know this ,so I really appreciate you for your effort.
Termites can harm living trees, but they more commonly attack woody plants that are already in decline. Besides the obvious economic termite damage it causes, an infestation can also be a significant emotional strain. For this reason, termite control is essential. And since it is so complex and difficult a task, get rid of termites to these pests and eradicating them from a home is normally a task best left to trained experts in the field.
Hello there, i wanted to thank you for such a great post you shared in your Blog. Awesome and very helpful!
Kidney Stones Home Remedies
From us to you! Thank for this very informative high in details article you shared on the web. Alta White
Thanks for all your valuable labor on this website. Gloria delights in getting into investigations and it’s obvious why. Most people hear all concerning the dynamic method you present powerful guidelines on this website and as well boost response from other individuals on the subject matter so our own daughter is truly studying a lot of things. Take pleasure in the remaining portion of the new year. You’re the one carrying out a splendid job.
I love what you guys are up too. Such clever work and exposure! Keep up the very good works guys I’ve incorporated you guys to my own blogroll.
Watch The Rum Diary Online Free
Watch Janie Jones Movie Online
Watch Like Crazy 2011 Online Free
This has been so enlightening. I´ve discovered your website today and i´m enjoying it so much. It is full of smart advices!
Thanks for sharing. i really appreciate it that you shared with us such a informative post..
Pretty insightful read. Never thought that it was this simple after all. I had used a lot deal of my time looking online for someone to explain this matter clearly to me and you are the only one that ever did that. Great big thanks! Have a great day.
It is very easy to use. I am a beginner but this article is great
online magazine
thanks for sharing.. i will try
very nice work
Do you need a sitemap for SEO. Or, a robot.txt is good enough? Is a sitemap a must have..
"I'm trying Amanda's version because I want a targeted map of just a few of my labels. Several troubleshooting issues:
1)I edited style in my Blogger layout. .gf-title seems to control the format for the title of each post. What's the code to edit style for each LABEL title?
2) I had the same trouble as Richard -- the ""supress"" facebook fan page coding isn't working. I also tried display:none for author names in my Blogger layout and that didn't work either.
3)There are a lot of blank lines at the beginning of the post that I don't seem to be able to get rid of. "
thanks for your sharing.. i will try
very nice work
I was suggested this website by my cousin. I’m not sure whether this post is written by him as no one else know such detailed about my difficulty. You are incredible! Thanks!
I enjoy a well-written article like many other online readers. I was surprised that this information was so interesting. You have given me cause to reflect on many aspects of your content. I like that..best kettlebell workout
Post a Comment