Switch to get_theme_root()

git-svn-id: http://svn.automattic.com/wordpress/trunk@8498 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2008-07-30 06:26:59 +00:00
parent 508dfde88a
commit 563e470237
1 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ function get_header() {
elseif ( file_exists( TEMPLATEPATH . '/header.php') )
load_template( TEMPLATEPATH . '/header.php');
else
load_template( WP_CONTENT_DIR . '/themes/default/header.php');
load_template( get_theme_root() . '/default/header.php');
}
@ -20,7 +20,7 @@ function get_footer() {
elseif ( file_exists( TEMPLATEPATH . '/footer.php') )
load_template( TEMPLATEPATH . '/footer.php');
else
load_template( WP_CONTENT_DIR . '/themes/default/footer.php');
load_template( get_theme_root() . '/default/footer.php');
}
@ -35,7 +35,7 @@ function get_sidebar( $name = null ) {
elseif ( file_exists( TEMPLATEPATH . '/sidebar.php') )
load_template( TEMPLATEPATH . '/sidebar.php');
else
load_template( WP_CONTENT_DIR . '/themes/default/sidebar.php');
load_template( get_theme_root() . '/default/sidebar.php');
}