WordPress Polls and Rating Plugin
I am developing ( not from scratch, thanks mdawaffe for the leg up! ) a plugin for polls and ratings on WordPress.org, available here. It basically uses the core code used on WordPress.com with a few...
View ArticleTidy and format your PHP and meet WordPress standards on Coda and TextWrangler
If you are working in a collaborative environment, coding standards are important. When you are reading through code that you haven’t written, it helps if it follows a standard. As I work with...
View ArticleTidy assignments in Coda and TextWrangler
I have written a simple tool to tidy assignments. It basically takes a group of assignments and uses spaces to make the code more readable. This tool will help code meet the indentation rules in the...
View ArticleWP Plugins: How to remove a Filter
Eoin:Do not use remove_filter(). It is possible it will break other hooks which can have unintended consequences. This post gives a really good alternative approach using static variables. Originally...
View ArticleHow to debug your WordPress plugin
If you are developing a plugin on WordPress, you will need to debug your code as you go. To enable debugging, go to your wp-config.php file. Find the line… define('WP_DEBUG', false); Replace the line...
View ArticleWordPress Localization Plugin for Sublime Text
I wrote this plugin for Sublime Text to help on a project where I am localizing a lot of text. I found I was copy and pasting the same i18n methods over and over so I decided that there must be a...
View Article