https://github.com/besrabasant/workhorse
A WordPress Package to do all the heavy lifting.
https://github.com/besrabasant/workhorse
bedrock wordpress
Last synced: 2 months ago
JSON representation
A WordPress Package to do all the heavy lifting.
- Host: GitHub
- URL: https://github.com/besrabasant/workhorse
- Owner: besrabasant
- Created: 2021-08-18T15:39:13.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-11-09T08:09:21.000Z (over 4 years ago)
- Last Synced: 2025-07-31T12:33:42.393Z (11 months ago)
- Topics: bedrock, wordpress
- Language: PHP
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WP Workhorse
**Note:-** This package is dependent on the WordPress polylang plugin to provide multilingual support.
## Usage
#### Implement Plugin directory structure.
Copy **example-plugin** directory to **mu-plugins** or **plugins** directory.
Make necessary customizations to the boilerplate according to your needs.
#### Implement in the plugin root file (Eg: *`plugin-root.php`*).
```php
use Workhorse\Plugin\Bootloader;
if (!defined('ABSPATH')) {
exit;
}
Bootloader::register(__FILE__, \ExamplePlugin\ExamplePlugin::PLUGIN_NAME);
```
## TODO
- [ ] Implement command to generate plugin boilerplate.