Changeset 1922
- Timestamp:
- 12/08/2004 09:51:25 PM (21 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-blog-header.php
r1917 r1922 203 203 endif; 204 204 205 $wp_template_dir = get_template_directory();205 $wp_template_dir = TEMPLATEPATH; 206 206 207 207 // Template redirection -
trunk/wp-footer.php
r1626 r1922 2 2 // If a footer.php file exists in the WP root directory we 3 3 // use that, otherwise use this default wp-footer.php file. 4 if ( file_exists( ABSPATH . '/footer.php') ) :5 include_once( ABSPATH . '/footer.php');4 if ( file_exists(TEMPLATEPATH . '/footer.php') ) : 5 include_once(TEMPLATEPATH . '/footer.php'); 6 6 else : 7 7 ?> -
trunk/wp-header.php
r1763 r1922 2 2 // If a header.php file exists in the WP root directory we 3 3 // use that, otherwise use this default wp-header.php file. 4 if ( file_exists( ABSPATH . '/header.php') ) :5 include_once( ABSPATH . '/header.php');4 if ( file_exists(TEMPLATEPATH . '/header.php') ) : 5 include_once(TEMPLATEPATH . '/header.php'); 6 6 else : 7 7 ?> -
trunk/wp-settings.php
r1830 r1922 97 97 } 98 98 99 define('TEMPLATEPATH', get_template_directory()); 100 99 101 function shutdown_action_hook() { 100 102 do_action('shutdown', ''); -
trunk/wp-sidebar.php
r1626 r1922 2 2 // If a sidebar.php file exists in the WP root directory we 3 3 // use that, otherwise use this default wp-sidebar.php file. 4 if ( file_exists( ABSPATH . '/sidebar.php') ) :5 include_once( ABSPATH . '/sidebar.php');4 if ( file_exists(TEMPLATEPATH . '/sidebar.php') ) : 5 include_once(TEMPLATEPATH . '/sidebar.php'); 6 6 else : 7 7 ?>
Note: See TracChangeset
for help on using the changeset viewer.