After a long break between new free WordPress theme releases, we finally have a new one! This one is another designed by CSS Heaven, ported from a free CSS template of the same name.
It has several standard features including WP 3.0 navigation menu support, threaded comments, post thumbnails, and widget-readiness. We’ll get to those features later.
There is a WP 3.0 menu placed in the top right portion of the theme (above the search box). You can also use them in any widgetized area.

There are widgetized areas on the sidebar, 404 page, as well as the “Featured” box on the main index template.

You can override the Featured box by using the custom “Featured Content” widget in the Featured widget area. You’ll need to input a heading, text, and a full image URL.

There is post thumbnail support on individual post and page templates. There are a couple included in the /images/ directory. Here is a sample of one and the placement (right above the content).
![]()
They are set not to exceed 609 pixels in width. Height is up to you, although you may not want to make it too high as it will push the content too far down the page.
GPL. You can do pretty much whatever you want with it, modify, redistribute, whatever (except release it under another incompatible license).
Hope you all like the theme. Let me know what you think in the comments.
And of course, thanks again to Roshan of CSS Heaven for designing another great template!
Related posts:
Today’s free WordPress theme is designed by Roshan of CSSHeaven.org (you might know him from his RamblingSoul themes). I ported the static template to WordPress and packed it with WordPress 3.0-specific features, including custom menus, headers, and backgrounds. More on that below.
As stated above, this theme includes WordPress 3.0 menu support which means you have very flexible control over what links show up in your header menu. If you don’t set up a menu, it will default back to a list of WordPress pages.

For further reading on implementing the WordPress 3.0 menu feature into your own themes, I found these links really helpful:
If you want to get rid of the red header image displayed directly below the nav menu, the custom header feature is for you. You’ll need an image 980 pixels wide and 170 pixels high to replace it. If it’s smaller than that, the CSS is coded to position the background image in the center of the div.

For more information on implementing this in your own theme, I found the add_custom_image_header page on the WordPress codex very useful, although I modified it a bit so it doesn’t load styles in the header, just an inline background image declaration on the “header” div.
Of course, feel free to check out the code in header.php and functions.php to see how exactly I did it.
If you want to customize the background image and get rid of the greenish background image currently used, use this feature.

This is by far the easiest feature to implement in a theme, thanks to WP Engineer for the one line code you need to add to your theme’s functions.php file.
add_custom_background();
You also need a wp_head() hook in your header so the internal stylesheet that handles the custom background styles can be embedded.
As you can see on index/archive/search pages, the posts are laid out in a gallery format. For this, I decided to use the built-in WordPress thumbnail system. It will automatically crunch the images to 270×140.
Thanks to Mark Jaquith’s tutorial for information on integrating this feature into the theme.
Like almost all the other themes here, Green Tea is widget ready. The widgetized areas are the sidebar, left footer, right footer, and 404 page.
This should probably go without saying, but you’re going to need to be running WordPress 3.0 for this theme to not spit out a bunch of errors. It’s not backwards compatible, and I did this on purpose to help force people to upgrade to the latest version (which you should be doing anyway).
The reason I chose this particular template because it seemed to have as many elements that I could use to integrate WordPress 3.0 specific features. While I wouldn’t necessarily use these features on my own sites, I can see the value if you’re developing themes for public release or clients.
WordPress 3.0 menu integration is pretty much a must for those, as it makes things so much easier for users in customizing links in menus versus the old way: page lists, category lists, or hard-coded menus. Depending on the design, custom headers would be nice and to some extent, maybe even custom backgrounds (although I’m not a huge fan of this one).
Thanks to Max Luzuriaga for the suggestion of the Green Tea name which I got on Twitter.
Let me know what you think of the theme in the comments, I’d love to hear your feedback!
License: Everything is licensed under the GPL, the original template (including CSS and artwork) and the WordPress portion.
Related posts:
Got a couple requests today to port this template by Mohd Huzairy to WordPress, so I did. As you can see, it’s super simple with a very minimalistic design. In the WordPress theme, I added a few features like a widgetized sidebar and threaded comments.
Related posts:
Today we have another awesome free WordPress theme, which I ported from a Styleshout template. It’s more or less a pretty standard blog design with a bunch of widgetized areas (mostly in the footer), threaded comments support, and post thumbnail integration, among other things.
Let’s get into the features in more detail.
If you have the FlickrRSS plugin installed, you can configure it to show your various Flickr photos. This will show up in your footer (above all the normal widgets).

This plugin is optional and will not break anything if you don’t want Flickr photos to show up.
Like the SongSpace theme, this theme makes use of WordPress’ built-in post-thumbnail feature.
![]()
Since post thumbnails were introduced in 2.9, you’ll need to at least WordPress 2.9 to run this theme.
Like other Styleshout ported themes including Jungleland and FreshPick, Cool Blue has an archive template that differs from the usual index template.

I used the same template on the search results pages too.
On single post pages I integrated the social bookmarking section available in the original Styleshout template.

Thanks go to Jeff Star of PerishablePress for the fully valid, SEO-friendly social media links for WordPress and also to the Sociable plugin (for LinkedIn and NewsVine).
To enable the e-mail icon, you’ll need to install the WP Email plugin by Lester Chan.
I had some feedback from a beta tester, Muhammad Haris, who suggested that the icons would look good if they were set to 80% opacity by default and 100% on hover.
While I don’t like to mess too much with ported theme code, it’s actually pretty simple if you really want to. Just add the following lines in your style.css file:
.share-box a img{
filter:alpha(opacity=80);
-moz-opacity:0.8;
-khtml-opacity: 0.8;
opacity: 0.8;
}
.share-box a:hover img{
filter:alpha(opacity=100);
-moz-opacity:1;
-khtml-opacity: 1;
opacity: 1;
}
If a browser doesn’t support the opacity feature, don’t worry about it, the images will just show up as normal. Of course you can change all the 80’s and .8’s in the first part to whatever percentage you see fit.
The original template had a threaded comments design built-in, so I integrated it with a custom callback (plus a few CSS changes).

The Cool Blue WordPress theme has six widgetized areas. One in the sidebar, four in the footer (for each column), and one on the 404 template.

Pictured above is the fat, fully widgetized footer included in the Cool Blue theme.
To handle the “Updates” part, I coded in a custom widget to input your feed URL, Facebook URL, Twitter URL, and E-mail subscription URL. I’d recommend you place it in the “Footer One” widget area.

Thanks to WP Engineer for the code.
That’s right, this is a feature. Why? Because I really couldn’t think of a good reason to include one that couldn’t be better accomplished by a separate plugin. Expect a follow up (opinion) post regarding this soon.
The Styleshout ports are easily the most downloaded themes here, although my download counter has been busted ever since I upgraded to 2.8 so I’m not 100% sure if anyone has overtaken them. I doubt it.
Hope you all like the theme, let me know what you think in the comments.
Related posts:
Today we have a free WordPress theme designed by Brad of DemusDesign. I took the coded design and ported it to WordPress. This is the first theme here which makes use of the_post_thumbnail feature to handle thumbnails and needs at least WordPress 2.9 to function properly. Other features include several widgetized areas, including a widgetized footer.
And now onto the features in more detail…
Included in the theme are five widgetized areas.

Included in the original template are several color scheme stylesheets: blue, brown, green, orange, pink, purple, red, yellow. In the WordPress theme, I decided to integrate these with a very simple theme options page dropdown.

The green one is pictured in all the screenshots. If you don’t set anything, the default color scheme is blue.
Instead of using TimThumb like I usually do to handle resizing post thumbnails, I decided to integrate a feature that was made available to themes with the WordPress 2.9 release called the_post_thumbnail.
Simply upload an image like you usually do, select it as your post thumbnail, and it will be displayed on the site. No messing around with custom write panels any more.
![]()
Keep in mind this is my first attempt at integrating post thumbnails into a theme with the_post_thumbnail, so it may take some experimenting to get them just right.
Further the_post_thumbnail() resources:
Hope you all like this WordPress theme. Thanks once again to Brad of DemusDesign for the great template.
Let me know what you think in the comments. Would be especially interested to hear your feedback regarding the_post_thumbnail in comparison to something like TimThumb and using custom fields.
Related posts:
This WordPress theme is ported from the free CSS template of the same name by Rambling Soul. It’s a dark blog theme with a custom homepage template. It supports widgets and threaded comments. There are a few other features in the theme which will be gone over below.
Included in the theme is a custom page template designed to be used for your homepage. It includes the following:
To use this page template as your homepage, you’ll need to do the following:
I used a similar technique in the Simply Minimal WordPress theme so you could have a clearly separated Home and Blog page regardless of your permalink structure.
Remember, you you don’t need a blog on your front page.
If you don’t want to use the custom homepage template, don’t worry about it. You’ll have a regular blog style layout as your homepage.
As mentioned above, there are optional custom post images you can use on the homepage template. They should be sized 185×100 (185 pixels wide, 100 pixels high).
I opted not to use something like TimThumb due to hosting compatibility issues that some hosts have. You’ll hopefully be able to easily crop the image yourself within the WordPress admin panel.
After cropping, simply input the full URL in the custom write panel on the posts page.
And save/publish, the custom homepage image will now appear on the post you selected.
There are four widgetized areas in this theme.
The 404 template widget area isn’t pictured.
Included is a simple theme options page to control which pages are excluded on header and footer menus.
Depending on the length of your blog title, you may not have a lot of room for links in the header, so just input a comma separated list of page IDs you wish you exclude.
To find your page ID, go to the manage pages menu and hover over a link to edit a page. You should see something like com/wp-admin/page.php?action=edit&post=XX in your browser’s status bar, where “XX” is your page ID.
This theme has support for the following plugins.
Remember, these are all optional plugins you can install for added functionality. You don’t need to add any integration code since I already included it with the theme, and the theme won’t break if you don’t have these plugins installed.
Hope you all like the theme, let me know what you think of it in the comments.
And of course, thanks once again to Roshan of Rambling Soul for the great template. You can check out all his other designs ported to WordPress on this page.
Related posts:
Finally, presenting the winner of theme battle #3. Tasty Showcase was a template designed by Brad of DemusDesign, who also coded it in XHTML/CSS/JS. I then took the coded template and ported it to WordPress. It has a ton of widgetized areas, including widgetized footers (plural).
Read on to see the features, including how to use the slider, in more detail…
Displayed on the homepage, this Karmic Flow powered slider will display your four latest posts with a custom image should you choose.
Once you have a custom image sized 653×367 (653 pixels wide, 367 pixels high) simply input the absolute URL to the image in the built-in custom write panel.
If you don’t have an image, the theme will automatically use one of the placeholder images (depending on which slot it is) if you don’t specify one yourself. That means even if you don’t have any images, there will still be a different picture for each one.
This theme is chock-full of widgetized areas, 14 to be exact. Here’s where they are, and what they do:
Keep in mind the “Home Footer” areas are only used on the homepage (where the slider is). The rest of the footer widget areas are controlled through the “Footer” ones, and affect every other page on the site besides the homepage.
The above diagram shows all the “Sidebar” and “Footer” widget areas. Not pictured are the “Home Footer” areas (basically the same place as the regular footer, except on the homepage) and the 404 template widget areas.
I bet you all forgot about theme battles, didn’t you? I know it was a few months between the conclusion of the voting and the release of the winning theme (this one) but better late than never.
Brad from DemusDesign was kind enough to code this one into XHTML/CSS and integrated the Javascript for the slider even though I usually code the winning theme battle themes myself. This time I just did the WordPress portion. You can get the static (non-WordPress) version on his site.
I’d also like to thank Cristian Antohe of Cozmos Labs for spotting a bug on the theme via Twitter. Also a special thanks to Omar Corrales of Slimmity who tested the theme himself and provided some good feedback, including several bug fixes before the release.
Anyway, since the time RS16 was released, I got the forums back online (with a matching bbPress theme) so if you have any support questions, they go there.
Let me know what you think of the theme in the comments, I’d really love to hear your feedback.
Related posts:
It’s been a while since our last free WordPress theme. This one is designed by Roshan from Rambling Soul, who has recently returned to designing free templates after a long absence. This theme has a number of interesting features, which will be gone over below.
Read on to check out the features in more detail…
Roshan designed this template with a set of button-style image links for the page navigation. I wanted to make sure there was an easy way to choose which image you wanted to use on a page-by-page basis, so I coded in a custom write panel to make it easier.
– home
– works
– blog
– downloads
– blogSimply type in the name of the corresponding image listed on the right, on the write menu on each page. If nothing is specified, the “works” image will be used (which is why there’s a paintbrush on every other page besides About).
The code used to display the image links through custom fields was heavily modified from the WordPress Menu Tricks article at ThemeShaper, take a look at the functions.php file in the theme if you’re curious.
There are only two widgetized areas in this entire theme. One widgetized area is on the 404 template, in case you want to customize your 404 page from the WordPress admin.
The second is called “Homepage Top” and located on top of the index page, so you can customize the information displayed there.
This theme is integrated with the WP-PageNavi plugin. Simply install it to get super cool numbered pagination on your index, archive, and search pages. Otherwise you’ll get normal previous/next pagination links.
Your latest tweet is displayed at the bottom of each page in the RS16 theme after you input your Twitter username in your user profile. This Twitter input box located at the bottom of: Users → Your Profile.
Thanks to Justin Tadlock for the code to add and use custom user profile fields.
Roshan included four different post background images with different colors. Adding onto the custom write panel made for the page navigation links is a way to define an alternate background color to posts and pages, if you choose.
The different color choices are: green, gray, brown, pink. If no color is defined, the default color is green.
Thanks to WPRecipes for the code on how to get custom fields outside the loop.
Hope you all like the theme, despite the unconventional page navigation. It’s worth noting that there is another set of text-based page navigation located in the footer. If you want more Rambling Soul templates which I’ve ported, check out this tag page for the full collection.
Not many people have noticed, but the support forums have been closed ever since the new design was launched. Not only so I can create a matching bbPress theme for it, but also wanted to set aside some time to clean up all the spam accounts which are cluttering up the database. Hardly anyone uses it anyway, so hopefully the few that do can be patient while I set that up again.
With that said, feel free to let me know what you think of the theme in the comments, including support-related questions if you notice anything that’s off.
Related posts:
Today we have an awesome news theme, originally designed by DemusDesign, which I then ported to WordPress. This theme requires at least WordPress 2.8 to function properly, and includes some standard features such as threaded comments and comment pagination. There are also over 10 widget-ready areas, including a widgetized footer, plus a custom widget for ad management.
And now onto the features in more detail…
Featured images and thumbnails for posts are used in a number of places in this theme, including the main index page, single post page, archives, and search results. Thanks once again to TimThumb, you only need to upload one image to use in all of these places.
Once you’ve uploaded a 610×281 image, copy the full path to the image and paste it in the custom write panel. This image will automatically be resized and used in the multiple areas mentioned above.
There are over ten different widget areas included in this theme. They are color coded in the screenshot below, click it to enlarge the image.
The following are descriptions of the widget-ready areas pictured above.
Tabber – That’s right, there’s a widget-ready tabber. It’s ideal for text widgets, tag clouds, and lists. There probably isn’t room for more than four or five tabs.
Sidebar Ads – This area, as you might expect, is designed for 125×125 advertisements. I’ve also included a very basic 125×125 ad widget which you can use to place the ads in your sidebar.

This widget is not limited to the “Sidebar Ads” widget, but it’s probably the best place to put it.
Sidebar Left and Sidebar Right – These are displayed directly below the “Sidebar Ads” area. It’s ideal for lists of categories, archives, etc.
Sidebar Bottom – This area is displayed directly below “Sidebar Left” and “Sidebar Right” and there’s nothing there displayed by default. It might be ideal for text widgets or a list of recent posts.
Home Left and Home Right – These areas are displayed on the homepage. By default there is nothing displayed. It’s best used with text widgets.
Footer – There are five different widget areas in the footer, with “Footer One” being the one on the far left and “Footer Five” on the far right.
Single Middle (not pictured) – This is displayed only on the single post pages, directly below the “Share This” box with the links to share the post on Twitter, etc.
Those who follow me on Twitter know I’ve been tweeting about this upcoming theme for a while now, so thanks for your patience while I got everything ready. I think themes like this prove that free WordPress themes are still alive, and hopefully you’ll agree with me.
I’ve tried to test the theme pretty thoroughly, but if you notice any bugs with the theme please let me know in the comments or in the support forums and I’ll see what I can do.
Related posts:
Today we have an awesome free WordPress theme, originally designed by Styleshout. This theme has a number of cool features and is reminicsent of the FreshPick theme, also designed by Styleshout. There are six widgetized areas, including a widgetized footer, as well as a custom widget included with the theme. It also has threaded comments, so you’ll need at least WordPress 2.7. Other features will also be gone over below.
And now onto the features in more detail…
This theme makes extensive use of thumbnails, so I coded in a custom write panel to insert thumbnails into your posts as an alternative to custom fields.
For both, make sure you use the full path of the image. The images should also be hosted on your domain, otherwise the TimThumb script may not work.
Like I mentioned above, this theme has a whopping six widget ready areas. One in the sidebar, four in the footer, and one on the 404 template.
For the first time, I also created a custom widget for the “Follow Us” links you currently see in the footer. This will require WordPress 2.8 to work, but if you’re currently using 2.7 it shouldn’t break anything.

Simply place the “Feed links” widget in any one of the footer widget areas, and be sure to fill in the respective URLs.
Many thanks to WPengineer for the code to this, which I modified slightly.
This theme has support for the FlickrRSS plugin, which you can currently see in the sidebar. Here’s a screenshot of my settings in case you’d like to set them up on your sidebar like I have them currently:
Hope you all like the theme. It was actually a bit easier to port than it looked, considering I had already done most of the work already with the FreshPick theme. As a lot of the markup was very similar, it was mostly just copying a lot of the functions over to the new theme.
Oh yeah, and for the first time in like 10 themes, there isn’t a theme option page included with the Jungleland theme. Sorry all you theme options lovers, but I couldn’t think of any justifiable reason to include one. If there’s something specific you’d like to change, a tiny code edit might be in order.
A special thanks to Omar Corrales who was kind enough to test out the theme for me and found a couple bugs that I missed. Sometimes it takes an extra set of eyes to find these things.
Let me know what you think of the theme in the comments, but if you have any support questions please make sure to post in the forums.