There are many ways to show ‘Related Entries’ or ‘Related Posts’ for blogger platform, like the one I have on my blog. Most of them require lot of changes in the template code.
Here is an excellent solution which only involved 3 lines of code to be embedded within the template. Let’s start how to implement this excellent way to show related posts in blogger.
Step 1:
Open your Blogger Layout>>Edit HTML>>Expand Widget Templates
<*div class='post-footer-line post-footer-line-3'/>
…
<*/div>
Step 2:
Add this line of red code below the code in step 1
<*div class='post-footer-line post-footer-line-3'/>
…
<*/div>
<*div id='related_posts'/>
You may also checkout another method by jackbook
Leave a Reply