How to Export Subscribers from WordPress.Com

If there comes a time that you need to export subscribers from WordPress.Com follow these simple steps: login to http://www.wordpress.com select Dashboard : Site Stats locate Totals, Subscriptions & Shares metabox select Site Subscriptions : [] active subscribers select either … Read More

Cross Browser CSS Background Transparency

In a nutshell, this is what I used to achieve somewhat cross browser css background transparency: #content { background-color: rgba(255,255,255,0.3); }#content { background-color: rgba(255,255,255,0.3); } Then, you’ll of course need to make an exception for stinkin IE: <!–[if IE]> <style … Read More

WordPress Upgrade Shell Script

There’s a couple examples online of shell scripts to upgrade a WordPress installation. However, I’ve ended up creating my own because every configuration (server and WordPress) is inevitably different, requiring you to roll your own. The script below handles a … Read More

How to Print Active WordPress Template File

I’ve needed to print the currently active WordPress template file and have forgotten it enough times now to finally document it as a post. During development, there’s usually always a time when you’ll want to detect the the template file that’s being … Read More