wp-load Without Loading the plugins
You would need to put something like this in a .php file of any name in your must-use plugins folder (/wp-content/mu-plugins/) so that it loads before all plugins so you can use it to filter the plugin loading… <?php if (defined(‘SHORTINIT’) && SHORTINIT) { add_filter(‘option_active_plugins’, ‘shortinit_plugins_filter’); function shortinit_plugins_filter($plugins) { $noloadplugins = array(‘w3-total-cache’); foreach ($plugins as … Read more