Home page excerpts gives your audience a brief view about a bunch of your posts at once and if they are interested in any of them, they’ll click on that post link to read the full entry.
Note that excerpts will only show when visitors view the home page or archived page. Now to do this you have to enable post pages first (Go to settings–>archiving and enable post pages).
You need to add three bits of code here to get through the process. I’m assuming that you have the latest template type blog and not the classic template blog.
Go to layout and click on edit HTML.
Add the following code in your template style sheet. That is in between the <style> </style> tags. If you do not find the style tags just add it below the opening <head> tag.
<b:if cond=’data:blog.pageType == “item”‘>
span.fullpost {display:inline;}
<b:else/>
span.fullpost {display:none;}
</b:if>
Then search for <data:post.body/> tag.(Use ctrl+f to make your search easy).
Add the following code after that <data:post.body/> tag.
<b:if cond=’data:blog.pageType != “item”‘><br />
<a expr:href=’data:post.url’>Read the rest of the entry</a>
</b:if>
The changes in your template are done. Now you have to add a small bit of code to every post that you want to show as a excerpt.
Add <span class=”fullpost”></span> to every post in HTML mode.
You need to add it to every post should you want every post to show only an excerpt in your Home page and archive page. There is no cut out for this.
Anyway, this is Blogger and not WordPress right?
Visitors who read this article also read:
- Put ads below your post title in bloggerHaving seen how to swap blog title and post title for a better SEO result now let us see how...
- Swap(exchange) blog title and post title for better SEOIn my previous post i have shown how to make your recent comments appear in your sidebar. Now let us...
- Using EPFO PF Claim pageBy now, most of the employees would be aware that EPFO has setup an online data base of all employees...
- Make recent comments appear in your blogs sidebarComments are the best way to know whether your post has been successful or not. More comments you get,more the...
- Blogger Vs blog.co.in,which is better?Like any other starter, i used blogger in my early days of blogging.It was a nice,neatly built,easy to use interface...
- Posting articles through email in BloggerPublishing articles on Blogger via email One of the many exiting features of Blogspot enabled blogs is the ability to...

{ 6 comments… read them below or add one }
Hello, i tried to apply this on my blog, but i don’t have any “” in my code, what should i do ?
Thank you.
Hi,
Where should I add the in the post. I am not getting any result. I placed the code at the very start of the post and also tried at many places that I believe could be the position.
Can u please tell the exact position where the code is to be placed.
Thanks
Rajeesh
it still consume bandwith, could blogger possibly accept substr PHP code ?
Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly.
XML error message: Open quote is expected for attribute “{1}” associated with an element type “cond”.
this error occurs when i do so…
Check if all the opening brackets are properly followed by a closed brackets.
Going by the error, it seems as if some open quote is missing. Quote’s are nothing but ” “.
See if this solves the issue.
The problem with this hack is that the data is still sent to the browser. It isn’t displayed, but it still eats bandwidth and slows down page rendering.