Guidelines for building quality plugins
Up until this point, we have looked at the process of building simple plugins with the recommended practices. Most of you will be developing WordPress sites for individual clients and hence the plugins you develop will not have to go through a verification process for quality. However, it's important to build extendable and maintainable plugins that are to be compatible with WordPress version upgrades as well as other third-party plugins. On the other hand, if you are developing plugins for the WordPress plugin directory or premium plugin marketplace, you will have to go through an extensive verification and review process for both the code and features. So, the quality of the plugin needs to match the minimum quality standards.
Let's take a look at some of the common guidelines for building quality WordPress plugins, apart from the need to follow WordPress coding standards:
- Using built-in WordPress functions: This is a common problem in WordPress development...