
For blogger, use the following steps to add read more option:
- Go to Layout through the blogger Dashboard.
- Now open Edit Html option.
- Tick the Expand Widgets option and find <data:post.body/> using Ctrl+F.
- Now paste the code given below above the <data:post.body/> line:
<b:if cond='data:blog.pageType == "item"'>
<style>.fullpost{display:inline;}</style>
<p><data:post.body/></p>
<b:else/>
<style>.fullpost{display:none;}</style>
- Now paste this another code given below after the <data:post.body/> line:
<b:if cond='data:blog.pageType != "item"'><br />
<a expr:href='data:post.url'>Read more...</a>
</b:if>
</b:if>
After saving the template, go to Settings -> Formatting and enter the following code in post template code:
<span class="fullpost">
</span>
It will appear as follows:

Now in by default every post will contain the above code as shown in the picture below:

After saving settings you can start posting. The text that you want to be shown after the read more option should be entered between the two lines as shown in red colour below in posting section:
<span class="fullpost">
ENTER THE TEXT YOU WANT TO BE SHOWN AFTER READ MORE OPTION
</span>
0 comments:
Post a Comment