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



get_template › WordPress Function

Seit1.5.0
Veraltetn/v
get_template ( Keine Parameter )
Gibt zurück:
  • (string) Template name.
Definiert in:
Codex:

Retrieves name of the active theme.



Quellcode

function get_template() {
	/**
	 * Filters the name of the active theme.
	 *
	 * @since 1.5.0
	 *
	 * @param string $template active theme's directory name.
	 */
	return apply_filters( 'template', get_option( 'template' ) );
}