WP_Theme::get_theme_root()publicWP 3.4.0

Returns the absolute path to the directory of the theme root.

This is typically the absolute path to wp-content/themes.

Method of the class: WP_Theme{}

No Hooks.

Return

String. Theme root.

Usage

$WP_Theme = new WP_Theme();
$WP_Theme->get_theme_root();

Changelog

Since 3.4.0 Introduced.

WP_Theme::get_theme_root() code WP 6.4.3

public function get_theme_root() {
	return $this->theme_root;
}