WordPress Plugin Development Guideline
General Use comments everywhere. Any new developers should be able to know what the code is doing pretty quickly. Stay Current. Adhere to the latest version of WordPress standards and APIs. Use best practices as detailed at http://codex.wordpress.org/Writing_a_Plugin Test site with define('WP_DEBUG', true); added to wp-config.php to view errors. File Structure The following folders should exist to support the main plugin file: /js - all javascript /css - all style sheets /img - all images /inc - all PHP include files The root should contain at least: the plugin file (my-plugin.php) uninstall.php - all code to remove plugin and database entries Plugin Coding Standards Use common PHP coding standards (see php.net). Use common WordPress coding standards (see codex.wordpress.org). Follow rules for quotes, indentation, spacing, etc. at http://codex.wordpress.org/WordPress_Coding_Standards Follow…