2012 was a great year for WordPress WordCamps, and 2013 is looking to be another spectacular year! I have the pleasure of kicking off a new season of WordCamps at WordCamp Victoria on January 12th. I will be sitting on an expert panel with none other than the greats Joey Kudish, Morten Rand-Hendriksen, and
PHP: Find a file within a given path
If you need to locate a file somewhere within a given path this code snipped will do it for you. Please note that it only works on files systems that can handle the Linux style architecture. This means that the code will likely not work on a Windows Server. I created this snippet specifically to
Turn email ( SMTP ) back on in OS X Mountain Lion
I upgraded to Mountain Lion a few days ago and I have to say that I have had several major disappointments. Overall it is great. Still pretty, faster than Lion, and I have not experienced the battery drain issues that have plagued some users. What I have noticed is that most of my standard, every
WordPress: Customizing the toolbar on your wp_editor()
Have you ever wanted to customize what toolbar buttons are shown on your TinyMCE wp_editor() instance? I was digging around the WordPress core and found a neat filter called teeny_mce_buttons. This filter passes in an array of button names that you can alter by adding and removing buttons you need. There is a pretty large
WordPress: Remove image from content on post save
If you have a post type where you want to allow the user to utilize the built in content box, but you do not want the user to be able to save images there is a quick trick you can use to strip image tags away before the content is saved to the database. This