Changeset 36638 for trunk/src/wp-includes/class-wp-theme.php
- Timestamp:
- 02/23/2016 05:19:57 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-theme.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-theme.php
r36416 r36638 269 269 $this->template = $this->stylesheet; 270 270 if ( ! file_exists( $this->theme_root . '/' . $this->stylesheet . '/index.php' ) ) { 271 $this->errors = new WP_Error( 'theme_no_index', __( 'Template is missing.' ) ); 271 $error_message = sprintf( 272 /* translators: 1: index.php, 2: Codex URL, 3: style.css */ 273 __( 'Template is missing. Standalone themes need to have a %1$s template file. <a href="%2$s">Child themes</a> need to have a Template header in the %3$s stylesheet.' ), 274 '<code>index.php</code>', 275 __( 'https://codex.wordpress.org/Child_Themes' ), 276 '<code>style.css</code>' 277 ); 278 $this->errors = new WP_Error( 'theme_no_index', $error_message ); 272 279 $this->cache_add( 'theme', array( 'headers' => $this->headers, 'errors' => $this->errors, 'stylesheet' => $this->stylesheet, 'template' => $this->template ) ); 273 280 return;
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)