Recently published WordPress themes and plugins

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


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



WordPress Theme: Cyanide
This theme has originally been created for an offshore client. The theme...




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


On the blog
Recommended
Currently Exploring
paddingRecently I had to use PHP to display a score value such as “3″ padded as “03″. There’s a tiny PHP function that does just this. $myvalue = '3'; str_pad((int) $myvalue,2,'0',STR_PAD_LEFT) While working with strings, such as $myvalue, I had to convert it to integer using the (int) operator so I can make further calculations with my initial value. The...