WP_Theme::get_theme_root() WordPress Method

The WP_Theme::get_theme_root() method is used to get the absolute path to the directory where themes are located. This is useful for retrieving the path to a specific theme or file within a theme.

WP_Theme::get_theme_root() #

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


Description

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


Top ↑

Return

(string) Theme root.


Top ↑

Source

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

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


Top ↑

Changelog

Changelog
VersionDescription
3.4.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.