Website | Wiki | GitHub | Code Generator
WordPress Plugin Boilerplate Powered is a complete foundation for building your WordPress plugins following PSR-4 standard.
The project history is part of the Wiki that also includes the workflow and how it is organized.
Every experienced WordPress developer uses always the same libraries (or snippets) but at the same time follows best practices.
Choose a library or a snippet and the boilerplate (with the help of the Code Generator) will generate everything without the need of manual copy & paste way or searching on the Internet!
The final usage ultimately depends on what you edit in the wpbp.json and composer.json files, and of course any other changes you've made.
You should be able to run the commands and edit the files mentioned below to get started.
Read all these links and edit the code however you like using the libraries, snippets, and tools listed below.
:warning: These steps may be incomplete and need expanded upon and testing. For example, you may also want to run tests, Codeception, etc.
wpbp-generator --json
- Generate a new wpbp.json file in the current folder.wpbp-generator
- Download WPBP and extract it to a new folder and removes the parts you don't want.cd your-plugin-folder
- Change into your plugin folder:composer install
- Install fresh with dev files.composer --no-dev update
- Update composer with no dev files.composer dumpautoload -o
- Optimize composer
classes. More info.npm install
- Install node packages.npm run plugin-zip
- Zip plugin files.:information_source:
npm pack --dry-run
- You can verify files to zip by running this command.:memo: Remember: Don't edit the vendor or node-modules folders. They are overwritten on updates.
These are options in wpbp.json. | WPBP Libraries | Other libraries |
---|---|---|
WPBP/PointerPlus Create a WP Admin wizard-like system. |
CMB2/CMB2 CMB2 is a developer's toolkit for building metaboxes, custom fields, and forms. |
|
WPBP/CronPlus Add and remove cronjobs. |
micropackage/requirements A requirements checker. |
|
WPBP/Widgets-Helper A class to ease creating powered Widgets. |
inpsyde/assets A Composer package to deal with scripts and styles. |
|
WPBP/Page-Madness-Detector Detect if the website is using a pagebuilder/visual builder. |
origgami/CMB2-grid CMB2 grid columns. |
|
WPBP/Template Load template files with autosearch and multilanguage folder for email template. |
johnbillion/extended-cpts A library which provides extended functionality to WordPress custom post types and taxonomies. |
|
WPBP/Debug Query Monitor Wrapper. |
Freemius/wordpress-sdk Freemius truly empowers developers to create prosperous subscription-based businesses. |
|
WPBP/CPT_Columns Improve the CPT list in the backend. |
wpdesk/wp-notice Library to display notices in wp-admin. |
|
WPBP/i18n-notice Handle i18n for plugins, based on Yoast i18n-module. |
julien731/WP-Review-Me A lightweight library to include in your WordPress theme/plugin to ask the user to review it on WordPress.org |
|
stevegrunwell/wp-cache-remember Helper for the object cache and transients. |
||
Seravo/wp-custom-bulk-actions Custom bulk actions for any type of post. |
||
yahnis-elsts/plugin-update-checker A custom update checker that supports GitHub,GItlab and others. |
||
AyeCode/wp-super-duper A class to build a widget, shortcode and Gutenberg block. |
||
decodelabs/tagged PHP markup generation in... PHP. |
:memo: Specific code snippets already integrated that is possible to remove with the generator
wp_localize_script
for passing PHP variables to JavaScript on the frontendWPBP/tools
Bash scripts. Currently, has some for wp-bump-version and wp-readme-last-wp-tested.
CodeAtCode/freemius-suite
Suite to package and deploy the free version of the plugin by Freemius on WordPress SVN.
Do you want to see which plugins have been made with this boilerplate? Check out this Wiki page!
WordPress Plugin Boilerplate Powered is licensed under the GPL v3 or later; however, if you opt-in to use third-party code that is not compatible with v3, then you may need to switch to using code that is GPL v3 compatible.