I’ve collected a few plugins that each have specific functionality I need for what would otherwise be a single large plugin.
Is it possible to bundle these into a single installable zip?
I’ve collected a few plugins that each have specific functionality I need for what would otherwise be a single large plugin.
Is it possible to bundle these into a single installable zip?
Something like this:
<?php
/*
Plugin Name: Combined Plugin
Description: Contains plugin a, plugin b and plugin c
*/
include dirname(__FILE__) . '/plugin-a.php';
include dirname(__FILE__) . '/plugin-b.php';
include dirname(__FILE__) . '/plugin-c.php';