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
A while ago I bought an USB flash drive. Lately, I’ve been storing some materials for a new site, and some other important data (such as a site engine in development). I had no backup anywhere, and a couple of days ago, it crashed. It just crashed, and all my data was gone down the drain. Years ago, I learned...
If you have a script on a remote server and you are using PHP5, then you will not be able to use include() or require(). I learned that while trying to include a script on a subdomain (for speed). The only solution is to use the file_get_contents() function instead. That’s all. Your remote inclusion will now work. Also view official...
You might have a text file with a lot of emails, extracted from a mail client or a CSV file created with some script. Nonetheless, you want to extract all the valid email addresses (user@domain.ext) from the file. Pass this function a file (you can rename it to .php, or .txt, or .csv) and it will extract all addresses. function...
I’ve been trying to enhance one of my current themes with a dynamic header. The header was supposed to show different images with different links to section of the blog. While searching on the internet for a viable PHP array randomizer function, this is what I ended up with. It works perfectly. <?php // Random Image With Link // Blog...