Recently published WordPress themes and plugins

Smart Backup Plugin


Smart Backup is a complete WordPress solution for database backup and restore...

premium

Ambient Occlusion Theme


Ambient Occlusion is a clean and warm theme, with a brown/cocoa colour...

free

WordPress Theme: Shiny


Shiny 2.0 is a fresh WordPress theme hot off the press! Some...

free

WordPress Theme: Cyanide


This theme has originally been created for an offshore client. The theme...

free

Inception Theme


On the foundation of Whiskey Air Theme, I have built a new...

free

Whiskey Air Theme


I now give you Whiskey Air, a simple, imageless theme, compatible with...

free

WordPress Theme: Clear Apple


Clear Apple is a clean magazine theme, no thumbnails for posts, wide...

free

WordPress Theme: Blizzard


A new theme based on some old CSS template of mine and...

free

WordPress Theme – X5 Turbo


X5 is the successor of X4.1 and has some small improvements over...

free

On the blog

Recommended

CodeCanyon Referral Follow Turbosquid Hostgator Affiliate 2 Hostgator Affiliate 1


My latest 3D model is now up on Turbosquid.com. It’s a simple 3D low-energy bulb. It’s the last simple model, as I intend to go advanced and create some city models. I have several drafts of both modern and futuristic cities. It seems that, lately, object collections start to catch up. So I’ll build several collections in the near future.

I’ve been watching for a few weeks now a great show on CBS, namely Late Late Show with Craig Ferguson. This man is fantastic and he’s been through a lot during his life. Now, before I start, let me tell you my favourite parts of his show. So, I’ll start with the monologue, I’ll then add the actual talk to...

There are quite a handful of different post thumbnail solutions out there, but it seems that I found a very simple and compatible one that uses the famous timthumb library. Add this code to your functions page, functions.php: function post_image() { global $post, $posts; $thumb = ''; $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches); $thumb = $matches [1] [0]; if($thumb == '')...

One of the latest features I’ve added to my sports fishing portal was the nice date feature. Instead of showing PHP formatted date and time, I wanted to display time since the action took place, like “4 hours ago”, “2 days ago”, “1 minute ago” and so on. <?php function nicetime($date) { if(empty($date)) { return "ERROR: No date provided"; }...