wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



is_child_theme › WordPress Function

Seit3.0.0
Veraltetn/v
is_child_theme ( Keine Parameter )
Gibt zurück:
  • (bool) True if a child theme is in use, false otherwise.
Definiert in:
Codex:
Changelog:
  • 6.5.0

Whether a child theme is in use.



Quellcode

function is_child_theme() {
	global $wp_stylesheet_path, $wp_template_path;

	return $wp_stylesheet_path !== $wp_template_path;
}