wp_using_themes

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

WordPress Version: 5.1

/**
 * Determines whether the current request should use themes.
 *
 * @since 5.1.0
 *
 * @return bool True if themes should be used, false otherwise.
 */
function wp_using_themes()
{
    /**
     * Filters whether the current request should use themes.
     *
     * @since 5.1.0
     *
     * @param bool $wp_using_themes Whether the current request should use themes.
     */
    return apply_filters('wp_using_themes', defined('WP_USE_THEMES') && WP_USE_THEMES);
}