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

(WP_Paused_Extensions_Storage)


Top ↑

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

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.