Changeset 34066 for trunk/src/wp-admin/theme-editor.php
- Timestamp:
- 09/11/2015 11:59:30 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/theme-editor.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/theme-editor.php
r32974 r34066 136 136 <div class="fileedit-sub"> 137 137 <div class="alignleft"> 138 <h 3><?php echo $theme->display('Name'); if ( $description ) echo ': ' . $description; ?></h3>138 <h2><?php echo $theme->display( 'Name' ); if ( $description ) echo ': ' . $description; ?></h2> 139 139 </div> 140 140 <div class="alignright"> … … 166 166 if ( $has_templates || $theme->parent() ) : 167 167 ?> 168 <h 3><?php _e('Templates'); ?></h3>168 <h2><?php _e( 'Templates' ); ?></h2> 169 169 <?php if ( $theme->parent() ) : ?> 170 170 <p class="howto"><?php printf( __( 'This child theme inherits templates from a parent theme, %s.' ), '<a href="' . self_admin_url('theme-editor.php?theme=' . urlencode( $theme->get_template() ) ) . '">' . $theme->parent()->display('Name') . '</a>' ); ?></p> … … 176 176 foreach ( $allowed_files as $filename => $absolute_filename ) : 177 177 if ( 'style.css' == $filename ) 178 echo "\t</ul>\n\t<h 3>" . _x( 'Styles', 'Theme stylesheets in theme editor' ) . "</h3>\n\t<ul>\n";178 echo "\t</ul>\n\t<h2>" . _x( 'Styles', 'Theme stylesheets in theme editor' ) . "</h2>\n\t<ul>\n"; 179 179 180 180 $file_description = get_file_description( $absolute_filename );
Note: See TracChangeset
for help on using the changeset viewer.