The plugin flat scheme
Ultra semplified Wordpress legacy plugin scheme/bolerplate whit a CRUD operation for save and manipulate data in db.
by Bertz.tech - Alberto Marà · github.com/wp-collection/wp-plugin-flat-scheme
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/wp-collection/wp-plugin-flat-scheme/archive/refs/heads/main.zipDo you like this project? Good! Remember to encourage us in this: click on the ★ above this page and follow
wp-plugin-flat-scheme
An example pattern of "how to build a wordpress plugin and how to save its options in the wordpress database"
info:
The plugin is a 3 main file scheme.
The first "index.php" generates the link and the page on the wordpress menu;
The second file "contents.php" is the mainpage, the exemple form and logic inside the page;
Last file "wpdblib.php" is the functions methods for all actions doed in page content.
All actions is commented for easy undestand what and how it does all.
How to approach:
0. make a backup of plugins folder;
1. copy page in plugins folder of wordpress;
2. active the plugin and find it in menu "settings > hello plugin scheme";
3. test the page, make and save data... it work? ok, let's go!;
4. study the schemas and read all comments for understand "how and what";
5. change name "the-plugin-scheme" in folder and function;
6. enjoy.. mod what you wont.