Changeset 56635 for trunk/src/wp-includes/load.php
- Timestamp:
- 09/20/2023 05:25:26 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/load.php
r56548 r56635 1050 1050 } 1051 1051 1052 if ( TEMPLATEPATH !== STYLESHEETPATH ) { 1053 $themes[] = STYLESHEETPATH; 1054 } 1055 1056 $themes[] = TEMPLATEPATH; 1052 $stylesheet_path = get_stylesheet_directory(); 1053 $template_path = get_template_directory(); 1054 1055 if ( $template_path !== $stylesheet_path ) { 1056 $themes[] = $stylesheet_path; 1057 } 1058 1059 $themes[] = $template_path; 1057 1060 1058 1061 /*
Note: See TracChangeset
for help on using the changeset viewer.