wp_paused_plugins()WP 1.0

Get the instance for storing paused plugins.

No Hooks.

Return

WP_Paused_Extensions_Storage.

Usage

wp_paused_plugins();

wp_paused_plugins() code WP 6.5.2

function wp_paused_plugins() {
	static $storage = null;

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

	return $storage;
}