wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_paused_themes › WordPress Function

Seitn/v
Veraltetn/v
wp_paused_themes ( Keine Parameter )
Gibt zurück:
  • (WP_Paused_Extensions_Storage)
Definiert in:
Codex:

Get the instance for storing paused extensions.



Quellcode

function wp_paused_themes() {
	static $storage = null;

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

	return $storage;
}