wp_paused_themes()
Get the instance for storing paused extensions.
Description Description
Return Return
Source Source
File: wp-includes/error-protection.php
function wp_paused_themes() { static $storage = null; if ( null === $storage ) { $storage = new WP_Paused_Extensions_Storage( 'theme' ); } return $storage; }
Expand full source code Collapse full source code View on Trac