Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wordpress-phoenix/wordpress-development-toolkit
Generate WordPress Plugins using our Abstract Plugin Boilerplate
https://github.com/wordpress-phoenix/wordpress-development-toolkit
wordpress wordpress-development wordpress-development-kit wordpress-plugin wordpress-plugin-boilerplate wordpress-plugin-library wp-plugin
Last synced: about 1 month ago
JSON representation
Generate WordPress Plugins using our Abstract Plugin Boilerplate
- Host: GitHub
- URL: https://github.com/wordpress-phoenix/wordpress-development-toolkit
- Owner: WordPress-Phoenix
- License: gpl-2.0
- Created: 2018-01-10T08:02:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-02-08T23:00:08.000Z (almost 3 years ago)
- Last Synced: 2024-09-22T22:04:09.355Z (about 2 months ago)
- Topics: wordpress, wordpress-development, wordpress-development-kit, wordpress-plugin, wordpress-plugin-boilerplate, wordpress-plugin-library, wp-plugin
- Language: PHP
- Homepage: https://packagist.org/packages/wordpress-phoenix/wordpress-development-toolkit
- Size: 1.49 MB
- Stars: 19
- Watchers: 9
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE-OF-CONDUCT.md
- Security: docs/security.md
Awesome Lists containing this project
README
# WordPress Development Toolkit
![Dash](dash.png)![Preview](example.png)
1. Navigate to https://wp.docker/wp-admin/ (ask for login in main channel).
2. Download and clone this plugin (should NOT be run in production environments on high-traffic servers where
performance matters...) into the plugins dir. Do not try to upload the zip file into the Add New plugin uploader. This feature is not supported.3. Navigate to Vanilla WP Network.
4. Go to Plugins.
5. Activate the `WordPress Development Toolkit` plugin.
6. Go back to https://wp.docker/wp-admin/.
7. Open Dev Toolkit from Admin Menu link.
8. Click "Start New Plugin".
How to fill out the New Plugin form:
![Form](https://github.com/WordPress-Phoenix/wordpress-development-toolkit/blob/master/plugin-generator-form.png)
9. Click Generate New Plugin. This will deliver a new zip file. Check that your namespace has been correctly generated.
10. Follow these instructions: https://github.com/WordPress-Phoenix/abstract-plugin-base#installation
## UPDATING `/lib` files
Lib files come from composer, but you need to ensure you run the command without the composer autoloader:
```
composer update --no-dev --no-autoloader
```## Offline Development Mode
The plugin uses the GitHub API to fetch the latest copy of the Abstract Plugin Base to include in the plugin. You can alternatively set:
```php
define( 'WP_DEV_KIT_AIRPLANE_MODE', true )
```
to pull the ABP powering this plugin for internet-less development.