WP_Customize_Manager::get_stylesheet_root()publicWP 3.4.0

Retrieves the stylesheet root of the previewed theme.

Method of the class: WP_Customize_Manager{}

No Hooks.

Return

String. Theme root.

Usage

$WP_Customize_Manager = new WP_Customize_Manager();
$WP_Customize_Manager->get_stylesheet_root();

Changelog

Since 3.4.0 Introduced.

WP_Customize_Manager::get_stylesheet_root() code WP 6.5.2

public function get_stylesheet_root() {
	return get_raw_theme_root( $this->get_stylesheet(), true );
}