Definition:
function get_theme_roots() {}
Retrieve theme roots.
Return values
returns:An array of theme roots keyed by template/stylesheet or a single theme root if all themes have the same root.
Source code
function get_theme_roots() {
global $wp_theme_directories;
if ( count($wp_theme_directories) <= 1 )
return '/themes';
$theme_roots = get_site_transient( 'theme_roots' );
if ( false === $theme_roots ) {
get_themes();
$theme_roots = get_site_transient( 'theme_roots' ); // this is set in get_theme()
}
return $theme_roots;
}
1775

February 12, 2011 


No comments yet... Be the first to leave a reply!