You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A WordPress plugin framework base to build any standard WP plugin on top of it.
5
-
It contains various items, such as Settings pages, Data tables, Widgets, Metaboxes, Custom Post Types, Shortcodes along with infrastructure for DB operations and CRON jobs.
5
+
It contains various items, such as Settings pages, Data tables, Widgets, Metaboxes, Custom Post Types, Shortcodes along with infrastructure for DB operations.
6
6
7
-
There are extra classes for API integration and AJAX.
7
+
There are extra classes for API integration, AJAX, File upload and Cron jobs.
8
+
9
+
NOTE: Requires PHP 5.4 and up.
8
10
9
11
## Usage
10
12
13
+
1. Change the class names, file names and declarations in `framework.php` according to need.
14
+
15
+
2. In `autoload.php` the `PLUGIN_BUILD` class includes all the files in process and decares the classes inside them. Modify them according to need.
16
+
17
+
3. Go through the files in `/lib/` and `/src/`. First one contains classes for extra features, while the src is using essential features.
18
+
19
+
4. In `autoload.php` the installation and uninstallation classes contain possible situations. Modify them as per need.
0 commit comments