WP_Importer::stop_the_insanity
Resets global variables that grow out of control during imports.
Method of the class: WP_Importer{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_Importer = new WP_Importer(); $WP_Importer->stop_the_insanity();
Notes
Global. wpdb. $wpdb WordPress database abstraction object. |
Global. Int[]. $wp_actions Stores the number of times each action was triggered. |
Changelog
| Since 3.0.0 | Introduced. |
WP_Importer::stop_the_insanity() WP Importer::stop the insanity code WP 7.1
public function stop_the_insanity() {
global $wpdb, $wp_actions;
// Or define( 'WP_IMPORTING', true );
$wpdb->queries = array();
// Reset $wp_actions to keep it from growing out of control.
$wp_actions = array();
}