wordpress / latest / functions / wp_paused_themes.html

wp_paused_themes(): WP_Paused_Extensions_Storage

Get the instance for storing paused extensions.

Return

WP_Paused_Extensions_Storage

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

Used By

Used By Description

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_paused_themes