wp_paused_plugins()

Get the instance for storing paused plugins.


Description Description


Return Return

(WP_Paused_Extensions_Storage)


Top ↑

Source Source

File: wp-includes/error-protection.php

function wp_paused_plugins() {
	static $storage = null;

	if ( null === $storage ) {
		$storage = new WP_Paused_Extensions_Storage( 'plugin' );
	}

	return $storage;
}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.