is_theme_paused

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

WordPress Version: 6.5

/**
 * Determines whether a theme is technically active but was paused while
 * loading.
 *
 * For more information on this and similar theme functions, check out
 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
 * Conditional Tags} article in the Theme Developer Handbook.
 *
 * @since 5.2.0
 *
 * @global WP_Paused_Extensions_Storage $_paused_themes
 *
 * @param string $theme Path to the theme directory relative to the themes directory.
 * @return bool True, if in the list of paused themes. False, not in the list.
 */
function is_theme_paused($theme)
{
    if (!isset($GLOBALS['_paused_themes'])) {
        return false;
    }
    if (get_stylesheet() !== $theme && get_template() !== $theme) {
        return false;
    }
    return array_key_exists($theme, $GLOBALS['_paused_themes']);
}

WordPress Version: 5.2

/**
 * Determines whether a theme is technically active but was paused while
 * loading.
 *
 * For more information on this and similar theme functions, check out
 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
 * Conditional Tags} article in the Theme Developer Handbook.
 *
 * @since 5.2.0
 *
 * @param string $theme Path to the theme directory relative to the themes directory.
 * @return bool True, if in the list of paused themes. False, not in the list.
 */
function is_theme_paused($theme)
{
    if (!isset($GLOBALS['_paused_themes'])) {
        return false;
    }
    if (get_stylesheet() !== $theme && get_template() !== $theme) {
        return false;
    }
    return array_key_exists($theme, $GLOBALS['_paused_themes']);
}