voceconnect/wp-plugin-loader

A simplified interface to insure that a WordPress plugin has been loaded

0.1.0 2015-07-10 21:07 UTC

This package is not auto-updated.

Last update: 2024-07-24 08:45:43 UTC


README

WP Plugin Loader provides an interface for loading plugin dependencies.

Installation

Add WP Plugin loader as a dependency with Composer:

composer require voceconnect/wp-plugin-loader

Then ensure that your composer autoload file is properly included:

require_once 'vendor/autoload.php';

Initialize the PluginLoader:

$pluginLoader = new Voce\PluginLoader\PluginLoader();
$pluginLoader->registerHooks();

Loading Plugins

To be sure that a plugin is loaded, pass the plugin details to the wp_load_plugin action. For example, the below will load the 'Hello Dolly' plugin:

do_action('wp_load_plugin', 'hello-dolly', 'hello.php');

Alternatively, the action name can be retrieved from the class constant LOAD_ACTION:

do_action(Voce\PluginLoader\PluginLoader::LOAD_ACTION, 'hello-dolly', 'hello.php');

...of course this is much shorter if you're already using the use statement.