WP_Theme::get_template()

The directory name of the theme’s “template” files, inside the theme root.


Description Description

In the case of a child theme, this is the directory name of the parent theme. Otherwise, the get_template() is the same as get_stylesheet().


Return Return

(string) Template


Top ↑

Source Source

File: wp-includes/class-wp-theme.php

	public function get_template() {
		return $this->template;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.4.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.