wp_paused_plugins(): WP_Paused_Extensions_Storage

In this article

Get the instance for storing paused plugins.

Return

WP_Paused_Extensions_Storage

Source

function wp_paused_plugins() {
	static $storage = null;

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

	return $storage;
}

User Contributed Notes

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