How to Add Read More in Blogger
One solution for this problem is to display a select amount of text from the beginning of each post as a teaser instead of showing the entire post on the front page of your blog. Then when people want to read the rest of the post, they can click a Read More.. link to see the full post.
This is also very handy if you have lots of long articles all on one page. (Note that you’ll need to have post pages enabled in order to make this feature work.)
Adding Read more in Blogger posts is pretty difficult compared to WordPress. Since we don’t have a more tag on Blogger, we need to implement a template hack for getting this done.
This is how it is done:
</head> or exactly after this code ]]></b:skin> like this:
<style>
<b:if cond='data:blog.pageType == "item"'>
span.fullpost {display:inline;}
<b:else/>
span.fullpost {display:none;}
</b:if>
</style>
<p><data:post.body/></p> in the template and add this code below:<b:if cond='data:blog.pageType != "item"'>
<a expr:href='data:post.url'> Read More..</a>
</b:if>
Feel free to change the Read More.. text to whatever you want the link to look like. Be careful not to delete any other code during this process.
Save TemplateRead More.. appear, and thickin this <span class=”fullpost”> and the remnant of your post till the end </span>. In order to adding this code, you should go in HTML Edit mode not Compose. You can easily add this feature to your default HTML Edit mode by using Post Template feature of blogger.Example:
This part will be visible by default <span class=”fullpost”> And the part will appear when the Read More.. is clicked</span>
