wp_paused_plugins() – Get the instance for storing paused plugins.
You appear to be a bot. Output may be restricted
Description
Get the instance for storing paused plugins.
Usage
$WP_Paused_Extensions_Storage = wp_paused_plugins();
Parameters
Returns
WP_Paused_Extensions_Storage
Source
File name: wordpress/wp-includes/error-protection.php
Lines:
1 to 9 of 9
function wp_paused_plugins() { static $storage = null; if ( null === $storage ) { $storage = new WP_Paused_Extensions_Storage( 'plugin' ); } return $storage; }