An open API service indexing awesome lists of open source software.

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.

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.