wpseek.com
				A WordPress-centric search engine for devs and theme authors
			get_theme_roots › WordPress Function
Since2.9.0
Deprecatedn/a
› get_theme_roots ( No parameters )
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | 
Retrieves theme roots.
Related Functions: get_theme_root, get_raw_theme_root, get_theme_root_uri, get_theme_mods, get_themes
	Source
function get_theme_roots() {
	global $wp_theme_directories;
	if ( ! is_array( $wp_theme_directories ) || count( $wp_theme_directories ) <= 1 ) {
		return '/themes';
	}
	$theme_roots = get_site_transient( 'theme_roots' );
	if ( false === $theme_roots ) {
		search_theme_directories( true ); // Regenerate the transient.
		$theme_roots = get_site_transient( 'theme_roots' );
	}
	return $theme_roots;
}