Changeset 17727
- Timestamp:
- 04/27/2011 09:16:49 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/wp-settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r17622 r17727 274 274 275 275 // Load the functions for the active theme, for both parent and child theme if applicable. 276 if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists( STYLESHEETPATH . '/functions.php' ) ) 277 include( STYLESHEETPATH . '/functions.php' ); 278 if ( file_exists( TEMPLATEPATH . '/functions.php' ) ) 279 include( TEMPLATEPATH . '/functions.php' ); 276 if ( ! defined( 'WP_INSTALLING' ) ) { 277 if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists( STYLESHEETPATH . '/functions.php' ) ) 278 include( STYLESHEETPATH . '/functions.php' ); 279 if ( file_exists( TEMPLATEPATH . '/functions.php' ) ) 280 include( TEMPLATEPATH . '/functions.php' ); 281 } 280 282 281 283 do_action( 'after_setup_theme' );
Note: See TracChangeset
for help on using the changeset viewer.