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



wp_paused_plugins › WordPress Function

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

Get the instance for storing paused plugins.



Quellcode

function wp_paused_plugins() {
	static $storage = null;

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

	return $storage;
}