CC-Auto-Activate-Plugins

0

This plugin automatically activate all Plugins from WP_PLUGIN_DIR. Tips & Tricks You can use plugin as Must Use Plugin (you can also use CC-MU-Plugins-Loader to load it). You can

Version
Last updated
Active installations
WordPress Version
Tested up to
PHP Version
pa_languages
Rating
Total ratings
Tag
This plugin is outdated and might not be supported anymore.

Description

This plugin automatically activate all Plugins from WP_PLUGIN_DIR.

Tips & Tricks

  1. You can use plugin as Must Use Plugin (you can also use CC-MU-Plugins-Loader to load it).
  2. You can exclude plugins from auto activate by using ClearcodeAuto_Activate_Plugins filter.

    add_filter( ‘ClearcodeAuto_Activate_Plugins’, function( $plugins ) {
    foreach ( [
    ‘example/plugin.php’
    ] as $plugin ) if ( isset( $plugins[ $plugin ] ) ) unset( $plugins[ $plugin ] );
    return $plugins;
    } );