PHP code example of voceconnect / wp-plugin-loader

1. Go to this page and download the library: Download voceconnect/wp-plugin-loader library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

voceconnect / wp-plugin-loader example snippets




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

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

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