wp_paused_themes(): WP_Paused_Extensions_Storage

Get the instance for storing paused extensions.


Return

WP_Paused_Extensions_Storage


Top ↑

Source

File: wp-includes/error-protection.php. View all references

function wp_paused_themes() {
	static $storage = null;

	if ( null === $storage ) {
		$storage = new WP_Paused_Extensions_Storage( 'theme' );
	}

	return $storage;
}


Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.