wp_paused_themes() WordPress Function
The wp_paused_themes() function pauses the specified themes. This function can be used when a theme needs to be updated or when a theme is broken and needs to be fixed. This function is only available in WordPress 3.0 or later.
wp_paused_themes() #
Get the instance for storing paused extensions.
Return
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 codeCollapse full source codeView on TracView on GitHub