WordPress Development Kit
WPDK is the acronym of WordPress Development Kit. It is a PHP framework written for WordPress environment, that improves WordPress kernel and enhances its base functions and classes. The primary goal of WPDK is to make productive, solid and easy to maintain the creation and the evolution of your plugins and themes.
wpdk
folder in your plugin directory.wpdk.php
The file system structure is not binding: following this standard nomenclature and organization is strongly recommended, in order to make it readable and compliant with other plugins.
Here it is:
your_plugin_directory/
Include the latest WPDK version.
Silent is golden.
This file is here only for security reasons.
This is the main file of the plugin and you can name it as you like. In this file you have to:
require_once( trailingslashit( dirname( __FILE__ ) ) . 'wpdk/wpdk.php' );
Have a bug? Please create an issue here on GitHub that conforms with our guidelines.