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.
This plugin automatically activate all Plugins from WP_PLUGIN_DIR.
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;
} );