[ad_1]
[ad_2]
What is your favorite boilerplate for creating plugin or theme. I have used wppb but want to know what others are using to start their plugin/theme development.
Copyright © 2020 - 2022, Project DMC - WordPress Tutorials for Beginners- All Rights Reserved. Privacy Policy
I just made one for myself. It’s a node script that does the dependency installation and creates the configs that I need.
When developing a plugin I typically use some bootstrapped version of an [Admin/Settings page](https://github.com/milliephanillie/protein-calculator/blob/main/src/Admin/TwwcAdminMenu.php), an [options wrapper class](https://github.com/milliephanillie/protein-calculator/blob/main/src/Options/TwwcOptions.php) that basically manages and prefixes my wp_options meta_keys, and I usually include some type of [shortcodes class](https://github.com/the-wellness-way/protein-calculator/blob/main/src/Shortcodes/TwwcShortcodes.php) and [routes class](https://github.com/prudytww/tww-forms/blob/main/src/Routes/TWW_Routes.php) that I can extend as well.
For the whole setup I’ll use a [docker instance](https://github.com/milliephanillie/wordpress-starter) that has WP-PHPUnit installed for unit testing.