Changeset 20791 for trunk/wp-includes/customize-controls.php
- Timestamp:
- 05/15/2012 01:03:31 AM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/customize-controls.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/customize-controls.php
r20737 r20791 44 44 <form id="customize-controls" class="wrap wp-full-overlay-sidebar"> 45 45 <?php wp_nonce_field( 'customize_controls' ); ?> 46 <div id="customize-header-actions" class=" customize-sectionwp-full-overlay-header">46 <div id="customize-header-actions" class="wp-full-overlay-header"> 47 47 <a class="back" href="<?php echo esc_url( admin_url( 'themes.php' ) ); ?>"> 48 48 <?php printf( __( '← Return to %s' ), __('Manage Themes') ); ?> … … 50 50 </div> 51 51 52 <div id="customize-info" class="customize-section"> 53 <div class="customize-section-title"> 54 <span class="preview-notice"><?php _e('You are previewing'); ?></span> 55 <strong class="theme-name"><?php echo $this->theme->display('Name'); ?></strong> 52 <div class="wp-full-overlay-sidebar-content"> 53 <div id="customize-info" class="customize-section"> 54 <div class="customize-section-title"> 55 <span class="preview-notice"><?php _e('You are previewing'); ?></span> 56 <strong class="theme-name"><?php echo $this->theme->display('Name'); ?></strong> 57 </div> 58 <div class="customize-section-content"> 59 <?php if ( $screenshot = $this->theme->get_screenshot() ) : ?> 60 <img class="theme-screenshot" src="<?php echo esc_url( $screenshot ); ?>" /> 61 <?php endif; ?> 62 63 <?php if ( $this->theme->get('Description') ): ?> 64 <div class="theme-description"><?php echo $this->theme->display('Description'); ?></div> 65 <?php endif; ?> 66 </div> 56 67 </div> 57 <div class="customize-section-content">58 <?php if ( $screenshot = $this->theme->get_screenshot() ) : ?>59 <img class="theme-screenshot" src="<?php echo esc_url( $screenshot ); ?>" />60 <?php endif; ?>61 68 62 <?php if ( $this->theme->get('Description') ): ?> 63 <div class="theme-description"><?php echo $this->theme->display('Description'); ?></div> 64 <?php endif; ?> 65 </div> 69 <div id="customize-theme-controls"><ul> 70 <?php 71 foreach ( $this->sections as $section ) 72 $section->maybe_render(); 73 ?> 74 </ul></div> 66 75 </div> 67 76 68 <div id="customize-theme-controls"><ul> 69 <?php 70 foreach ( $this->sections as $section ) 71 $section->maybe_render(); 72 ?> 73 </ul></div> 74 75 <div id="customize-footer-actions" class="customize-section wp-full-overlay-footer"> 77 <div id="customize-footer-actions" class="wp-full-overlay-footer"> 76 78 <?php 77 79 $save_text = $this->get_stylesheet() == $this->original_stylesheet ? __('Save') : __('Save and Activate');
Note: See TracChangeset
for help on using the changeset viewer.