wp_paused_themes(): WP_Paused_Extensions_Storage

In this article

Get the instance for storing paused extensions.

Return

WP_Paused_Extensions_Storage

Source

function wp_paused_themes() {
	static $storage = null;

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

	return $storage;
}

User Contributed Notes

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