Changeset 20645 for trunk/wp-includes/customize-controls.php
- Timestamp:
- 04/30/2012 03:46:17 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/customize-controls.php
r20585 r20645 42 42 </head> 43 43 <body class="wp-full-overlay"> 44 <form id="customize-controls" method="post" class="wrap wp-full-overlay-sidebar" target="_parent" action="<?php echo esc_url( add_query_arg( 'save_customize_controls', '1', admin_url( 'themes.php' ) ) ); ?>">44 <form id="customize-controls" class="wrap wp-full-overlay-sidebar"> 45 45 <?php wp_nonce_field( 'customize_controls' ); ?> 46 <input type="hidden" name="customize" value="on" />47 <input type="hidden" name="theme" value="<?php echo esc_attr( $this->get_stylesheet() ); ?>" />48 46 <div id="customize-header-actions" class="customize-section wp-full-overlay-header"> 49 47 <a class="back" href="<?php echo esc_url( admin_url( 'themes.php' ) ); ?>"> … … 80 78 submit_button( $save_text, 'primary', 'save', false ); 81 79 ?> 80 <img src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" /> 81 82 82 <a href="#" class="collapse-sidebar button-secondary" title="<?php esc_attr_e('Collapse Sidebar'); ?>"> 83 83 <span class="collapse-sidebar-label"><?php _e('Collapse'); ?></span> … … 86 86 </div> 87 87 </form> 88 <div id="customize-preview" class="wp-full-overlay-main"> 89 <iframe name="customize-target"></iframe> 90 </div> 88 <div id="customize-preview" class="wp-full-overlay-main"></div> 91 89 <?php 92 90 … … 96 94 $scheme = is_ssl() ? 'https' : 'http'; 97 95 $settings = array( 96 'theme' => $this->get_stylesheet(), 98 97 'preview' => esc_url( home_url( '/', $scheme ) ), 99 98 'settings' => array(), 100 99 'controls' => array(), 101 'prefix' => WP_Customize_Setting::name_prefix,102 100 'parent' => esc_url( admin_url() ), 101 'ajax' => esc_url( admin_url( 'admin-ajax.php', 'relative' ) ), 103 102 ); 104 103
Note: See TracChangeset
for help on using the changeset viewer.