wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



is_theme_paused › WordPress Function

Depuis5.2.0
Dépréciéen/a
is_theme_paused ( $theme )
Paramètres:
  • (string) $theme Path to the theme directory relative to the themes directory.
    Requis: Oui
Retourne:
  • (bool) True, if in the list of paused themes. False, not in the list.
Défini(e) dans:
Codex:

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 Conditional Tags} article in the Theme Developer Handbook.


Source

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'] );
}