예제 #1
0
/**
 * Begins execution of the plugin.
 *
 * Since everything within the plugin is registered via hooks,
 * then kicking off the plugin from this point in the file does
 * not affect the page life cycle.
 *
 * @since    1.0.0
 */
function run_mkp_holacracy()
{
    // Pass main plugin file through to plugin class for later use.
    $args = array('plugin_file' => __FILE__);
    $plugin = MKP_Holacracy::get_instance($args);
    $plugin->run();
}