wp_paused_themes

The timeline below displays how wordpress function wp_paused_themes has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 5.2

/**
 * Get the instance for storing paused extensions.
 *
 * @return WP_Paused_Extensions_Storage
 */
function wp_paused_themes()
{
    static $storage = null;
    if (null === $storage) {
        $storage = new WP_Paused_Extensions_Storage('theme');
    }
    return $storage;
}