wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_paused_themes › WordPress Function

Dan/a
Deprecaton/a
wp_paused_themes ( Nessun parametro )
Ritorna:
  • (WP_Paused_Extensions_Storage)
Definito a:
Codex:

Get the instance for storing paused extensions.



Sorgenti

function wp_paused_themes() {
	static $storage = null;

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

	return $storage;
}