Show Recent Posts With Thumbnail from Particular Label/Category in Blogger

Show Recent Posts With Thumbnail from Particular Label/Category in Blogger
Hey Blogger friends, Today i have come up with another cool blogger hack. It’s about showing recent posts with/without thumbnail from any particular label/category in blogger. As you can see in my sidebar, I have listed recent posts from each category, but i have done this in wordpress. So if you want to do same with your blogger blog, You just need to add some simple script to your blogger template. You can find some default gadgets in blogger “Add page element” section to show recent posts, but they don’t provide an option to show recent posts from a particular category. So in this post, I will guide on how to show the recent posts with thumbnail in blogger.

Know The Code
Before installing the code, you must know what the code contains and how can you use it.
<script style='text/javascript' src='http://kentemplates.googlecode.com/files/recent.js'></script>
<script style='text/javascript'>
var numposts = 5;
var showpostthumbnails = true;
var displayseparator = true;
var showcommentnum = true;
var showpostdate = true;
</script>
<script src='http://blog.kentemplates.com/feeds/posts/default?orderby=published&alt=json-in-script&callback=recent'></script>
As you can see in the above snippet, we got 5 variables.
var numposts =3;
This line controls the number of recent posts shown. You can change the number ’3′ to any number you wish.
var showpostthumbnails = true;
This is used to enable or disable thumbnails in the recent posts. You can either have them or disable them. It’s your wish. To enable thumbnail, you must set it “true” and to disable it set it to “false”.
var showcommentnum = true;
You can either show the number of comments or disable it. It’s also same as before, you must set it to “true” to enable the comment and set it to “false” to disable it.
var showpostdate = true;
It’s used to show the date. Either set it to “true” to show date or set it to “false” to hide it.
<script src='http://blog.kentemplates.com/feeds/posts/default?orderby=published&alt=json-in-script&callback=recent'></script>
This line tells the json to pull recent posts from which blog. You need to edit this link to show recent posts of your blog or just show recent posts from a particular category.

To show recent posts from your entire blog, you can just change the domain “http://blog.kentemplates.com” to your blog domain.

If you want to show the recent posts from a specific label, then you need to change the link that line of code to below this.
<script src='http://blog.kentemplates.com/feeds/posts/default/-/featured?orderby=published&alt=json-in-script&callback=recent'></script>
In the above code, you need to change two parameters. First one is the domain name and the second one is the category name. For example, i want to show recent posts from label called “featured”, so i used its name in that link.

If you want to use this script either to show featured posts or for showing recent posts from other existing categories in your blogger blog, then just change the keyword “featured” to your label name.

Installing the widget
To add the recent posts from particular category, Just follow the below steps

  • Login to your Blogger Account
  • Select your blog
  • Navigate to the Layout page of your blog
  • Select Add a gadget in the layout where you want to add
  • Choose HTML/Javascript gadget
Place the following code in the text area and give it a title as you wish

<script style='text/javascript' src='http://kentemplates.googlecode.com/files/recent.js'></script>
<script style='text/javascript'>
var numposts = 5;
var showpostthumbnails = true;
var displayseparator = true;
var showcommentnum = true;
var showpostdate = true;
</script>
<script src='http://blog.kentemplates.com/feeds/posts/default?orderby=published&alt=json-in-script&callback=recent'></script>

Remember to change your name of blog and other parameters. The above code is to show recent posts of your blog.

If you want to show recent posts from particular category, then you must add the following code instead of the above one.
<script style='text/javascript' src='http://kentemplates.googlecode.com/files/recent.js'></script>
<script style='text/javascript'>
var numposts = 5;
var showpostthumbnails = true;
var displayseparator = true;
var showcommentnum = true;
var showpostdate = true;
</script>
<script src='http://blog.kentemplates.com/feeds/posts/default/-/categoryname?orderby=published&alt=json-in-script&callback=recent'></script>
As you read in the beginning itself, remember to change the parameters as you wish.

Styling your Recent Posts
The above codes only fetches the recent posts from your blog. Most likely it must be suiting your current sidebar layout. But in case its messing up your current theme, then here is the styling code which you may need.

Show Recent Posts With Thumbnail from Particular Label/Category in Blogger

Let’s us see the recent posts structure and how you can modify it.

Show Recent Posts With Thumbnail from Particular Label/Category in Blogger

So each link as the above structure. If by chance the above widget is messing up with your template. Then you need to do the following modifications in CSS.
<style>
#recentposts ul {
border : medium none;
margin : 3px;
padding : 0;display:block;
}

#recentposts ul li {
font-family: Georgia, serif;
border-bottom: 1px solid #ccc;
display:block;
margin-bottom:5px;
}

#recentposts ul li img.thumbnail {
border: 1px solid #DDD;
padding: 2px;
background-color: white;
float: left;
margin: 0 8px 0 0;
}

.recentposts ul li a:link, .recentposts ul li a:visited, .recentposts ul li a:active {
display: block;
color: #727272;
padding: 8px;
background-image: none !important;
display:block;
}

#recentposts ul li span.meta {
display: block;
font-size: 10px;
text-transform: uppercase;
color: #777;
line-height: 20px;
}</style>
<div  id="recentposts"><ul>
<script style='text/javascript' src='http://kentemplates.googlecode.com/files/recent.js'></script>
<script style='text/javascript'>
var numposts = 5;
var showpostthumbnails = true;
var displayseparator = true;
var showcommentnum = true;
var showpostdate = true;
</script>
<script src='http://blog.kentemplates.com/feeds/posts/default?orderby=published&alt=json-in-script&callback=recent'></script></ul></div>
So now we have placed the links within a div section called “Recentposts” and similarly in CSS we have specified proper style for the div section.

So now you can try the above code for adding the recents posts in your site. 

Show posts from Particular Label below the post
Now if you want to show the recent posts from a particular label for example “featured” posts below the post, then you need to add the above code into your template following the below steps.

Go to your Template section of your blog. And place the code to your edit HTML.
Show Recent Posts With Thumbnail from Particular Label/Category in Blogger

Show Recent Posts With Thumbnail from Particular Label/Category in Blogger
Once you reach that page, Select “Expand Widget Templates” and search for :
<data:post.body/>
Show Recent Posts With Thumbnail from Particular Label/Category in Blogger
 Now place the original recent posts code from below to the edit html page. It is also the same code as above, but just we need to encode the script to make it work.
<style>
#recentposts {
width:100%;
}
#recentposts ul {
border : medium none;
margin : 3px;
padding : 0;display:block;
}

#recentposts ul li {
font-family: Georgia, serif;
border-bottom: 1px solid #ccc;
display:block;
margin-bottom:5px;
clear: both;
min-height: 58px;
}

#recentposts ul li img.thumbnail {
border: 1px solid #DDD;
padding: 2px;
background-color: white;
float: left;
margin: 0 8px 0 0;
}

.recentposts ul li a:link, .recentposts ul li a:visited, .recentposts ul li a:active {
display: block;
color: #727272;
padding: 8px;
background-image: none !important;
display:block;
}

#recentposts ul li span.meta {
display: block;
font-size: 10px;
text-transform: uppercase;
color: #777;
line-height: 20px;
}</style>
<div id='recentposts'><ul>
&lt;script style=&#39;text/javascript&#39; src=&#39;http://kentemplates.googlecode.com/files/recent.js&#39;&gt;&lt;/script&gt;
&lt;script style=&#39;text/javascript&#39;&gt;
var numposts = 5;
var showpostthumbnails = true;
var displayseparator = true;
var showcommentnum = true;
var showpostdate = true;
&lt;/script&gt;
&lt;script src=&#39;http://blog.kentemplates.com/feeds/posts/default?orderby=published&amp;alt=json-in-script&amp;callback=recent&#39;&gt;&lt;/script&gt;</ul></div>

Showing Adsense ad and Recent Posts side by side

If you want to show recent posts along with some subscription form or along with an adsense ad, then you need to edit this code in the CSS.
#recentposts {
width:100%; // Change Width as required
float:left; // Keep it as you want according to your template.
}

Conclusion

I wanted to cover everything related to recent posts widget in blogger, but still there are lots of other things you can add to this. So i will make a second part of this post with few more modifications to the script.

If you want any other specific hacks or some modifications to your blogger, mention in comments i would like to write about them.

2 Comments

  1. Hello. Great tutorial! Question: I have added the code you displayed above, and I am not seeing anything post on my blog.

    I changed the url to my url (http://savvydeetsbridal.com), and put the category label (styled%20shoot). Nothing happens. What else am I missing?

    For the first line of script that you have as an example: http://kentemplates.googlecode.com/files/recent.js, do I change that to read http://savvydeetsbridal.com/files/recent.js?

    Any advice would be great. Thanks in advance!

    ReplyDelete
    Replies
    1. Don't change to http://savvydeetsbridal.com/files/recent.js, because it is a file.

      Delete
Previous Post Next Post