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


Currently Exploring

tricks

1. Use a redirect function in PHP without header/location stuff: function redirect($page,$time) { echo '<meta http-equiv="refresh" content="'.$time.'; url='.$page.'" />'; } Now use: redirect('/tag/tricks/index.html',3); in order to redirect to index.php after 3 seconds. 2. Generate 3 characters salt strings: // Salt Generator function generate_salt() { // Declare $salt $salt = ''; // And create it with random chars for ($i =...

Recent posts: <?php wp_get_archives('title_li=&type=postbypost&limit=10');?> Multiple loops? Same template? WP Query not working after the first loop? Use <?php wp_reset_query();?> Too small a post? Tweet it!

The Christmas holiday is coming fast, and then the New Year, and then comes a “dead” period. This is how we call it. No contracts, no clients, no work. This is the perfect time to work and add more content and value both to your blog and to your readers. You also have more time to upgrade all your web...

A webmaster’s work is never done. What may have worked a few years ago when could be outdated today, so it’s important to constantly improve your web site. However, a massive overhaul is just too much work to undertake at one time. Instead, tackle these quick fixes over time, and you’ll be able to improve your web site with minimal...

Learning PHP. That’s my latest activity. And I needed some improvements for my scripts. There are many tiny details that can improve and speed up your PHP script functioning. Here is a list of 40 of them.