CC-Auto-Activate-Plugins

CC-Auto-Activate-Plugins Install Statistics

11
100%
Today: 11 Yesterday: 0 All-time: 1,004 downloads
CC-Auto-Activate-Plugins Icon

Try plugin: CC-Auto-Activate-Plugins

We'll create fresh WordPress site with CC-Auto-Activate-Plugins installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About CC-Auto-Activate-Plugins

This plugin automatically activate all Plugins from WP_PLUGIN_DIR.

1


0


0


0


0

updated: 5 years ago
since: 6 years ago
author: Clearcode

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 Clearcode\Auto_Activate_Plugins filter.

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