rogue-one/workhorse

1.2.5 2021-11-09 08:08 UTC

This package is auto-updated.

Last update: 2024-03-09 13:12:41 UTC


README

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).

use Workhorse\Plugin\Bootloader;

if (!defined('ABSPATH')) {
    exit;
}

Bootloader::register(__FILE__, \ExamplePlugin\ExamplePlugin::PLUGIN_NAME);

TODO

  • Implement command to generate plugin boilerplate.