wp_paused_themes()WP 1.0

Get the instance for storing paused extensions.

Хуков нет.

Возвращает

WP_Paused_Extensions_Storage.

Использование

wp_paused_themes();

Код wp_paused_themes() WP 6.7.1

function wp_paused_themes() {
	static $storage = null;

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

	return $storage;
}