wp_paused_plugins() WordPress Function

The wp_paused_plugins() function is used to retrieve an array of paused plugins.

wp_paused_plugins() #

Get the instance for storing paused plugins.


Return

(WP_Paused_Extensions_Storage)


Top ↑

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;
}

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.