path_to_theme
Definition
path_to_theme()
includes/theme.inc, line 697
Description
Return the path to the currently selected theme.
Code
<?php
function path_to_theme() {
global $theme_path;
if (!isset($theme_path)) {
init_theme();
}
return $theme_path;
}
?> 