The related posts widget will show a new related posts section below your post page.The related posts are fetched from the those posts having the same label as the current post.
1. Sign in to your blogger account.Go to the dash board.
</head>
4.Reaplace it with
<!–Related Posts Scripts and Styles Start–>
<b:if cond=’data:blog.pageType == "item"’>
<style>
#related-posts {
float:center;
text-transform:none;
height:100%;
min-height:100%;
padding-top:5px;
padding-left:5px;
}
#related-posts .widget{
padding-left:6px;
margin-bottom:10px;
}
#related-posts .widget h2, #related-posts h2{
font-size: 1.6em;
font-weight: bold;
color: black;
font-family: Georgia, “Times New Roman”, Times, serif;
margin-bottom: 0.75em;
margin-top: 0em;
padding-top: 0em;
}
#related-posts a{
color:blue;
}
#related-posts a:hover{
color:blue;
}
#related-posts ul{
list-style-type:none;
margin:0 0 0px 0;
padding:0px;
text-decoration:bold;
font-size:15px;
text-color:#000000
}
#related-posts ul li{
background:transparent url(http://2.bp.blogspot.com/_u4gySN2ZgqE/SnZhv_C6bTI/AAAAAAAAAl4/Rozt7UhvgOo/s200/greentickbullet.png) no-repeat ;
display:block;
list-style-type:none;
margin-bottom: 13px;
padding-left: 30px;
padding-top:0px;}
</style>
<script type=’text/javascript’>
var relatedpoststitle=”Related Posts”;
</script>
<script src=’http://files.bloggerplugins.org/related/related.js’ type=’text/javascript’/>
</b:if>
<!–Related Posts Scripts and Styles End–>
</head>
5.If you want to change the title of your widget you can edit this line of the above code
var relatedpoststitle=”Related Posts”;
6.If you want you can edit the blue and black colors present in this code
7.Now find this line of code
<div class=’post-footer-line post-footer-line-1′>
Or
<p class=’post-footer-line post-footer-line-1′>
8.Now immediately after any of these lines(whichever you could find) place this code snippet
<!– Related Posts Code Start–>
<b:if cond=’data:blog.pageType == "item"’>
<div id=’related-posts’>
<b:loop values=’data:post.labels’ var=’label’>
<b:if cond=’data:label.isLast != "true"’>
</b:if>
<b:if cond=’data:blog.pageType == "item"’>
<script expr:src=’"/feeds/posts/default/-/" + data:label.name + "?alt=json-in-script&callback=related_results_labels&max-results=6"’ type=’text/javascript’/></b:if></b:loop><a href=’http://www.bloggerplugins.org/2009/08/related-posts-for-blogger-widget.html’ style=’display:none’>Related Posts Widget</a>
<script type=’text/javascript’>
var currentposturl="<data:post.url/>";
var maxresults=5;
removeRelatedDuplicates(); printRelatedLabels();
</script>
</div>
</b:if>
<!– Related Posts Code End–>
this line determines the number of related posts that are displayed..and by default 6 posts are fetched from each label.
Related posts:
- Recent Posts Widget for Blogger Blogger [Blogspot] is a place where we can blogging...
- Recent Comments Widget For Blogger | Blogspot This Widget will Display Recent comments on Blogger Blog. Step...
- Using SyntaxHighlighter on BLOGGER xHighlighter is a script which is written in javascript. It...
- Show Blog Post Title First on Search Engine If your Blog title appears first followed by Blog post...
- Google Analytics Tutorial | Adding Analytics to Blogger Google Analytics is a great tool for anyone looking to...
Related posts brought to you by Yet Another Related Posts Plugin.





