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:
parent
508dfde88a
commit
563e470237
|
@ -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');
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue