Recently published WordPress themes and plugins
Smart Backup Plugin
Smart Backup is a complete WordPress solution for database backup and restore...
premiumAmbient Occlusion Theme
Ambient Occlusion is a clean and warm theme, with a brown/cocoa colour...
freeWordPress Theme: Cyanide
This theme has originally been created for an offshore client. The theme...
freeWordPress Theme: Clear Apple
Clear Apple is a clean magazine theme, no thumbnails for posts, wide...
freeOn the blog
Recommended
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"; }...