Skip to content

Instantly share code, notes, and snippets.

@972creative
Created August 2, 2017 17:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save 972creative/49fcb433e2c36786e85e0f87a0c19c5c to your computer and use it in GitHub Desktop.
Save 972creative/49fcb433e2c36786e85e0f87a0c19c5c to your computer and use it in GitHub Desktop.
<?php
define('INBOUND_FAST_AJAX' , true );
/**
* Enable Fast Ajax
*/
add_filter( 'option_active_plugins', 'ajax_disable_plugins' );
function ajax_disable_plugins($plugins){
/* load all plugins if not in ajax mode */
if ( !defined( 'DOING_AJAX' ) ) {
return $plugins;
}
/* load all plugins if fast_ajax is set to false */
if ( !isset($_REQUEST['fast_ajax']) || !$_REQUEST['fast_ajax'] ) {
return $plugins;
}
/* disable all plugins if none are told to load by the load_plugins array */
if ( !isset($_REQUEST['load_plugins']) || !$_REQUEST['load_plugins'] ) {
return array();
}
/* unset plugins not included in the load_plugins array */
foreach ($plugins as $key => $plugin_path) {
/* convert json */
if (!is_array($_REQUEST['load_plugins']) && $_REQUEST['load_plugins']) {
$_REQUEST['load_plugins'] = json_decode($_REQUEST['load_plugins'],true);
}
if (!in_array($plugin_path, $_REQUEST['load_plugins'] )) {
unset($plugins[$key]);
}
}
return $plugins;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment