mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Theme Customizer: Allow the customize iframe to be accessed directly (with full feature support). see #19910.
* Move the 'Return to Manage Themes' and 'Collapse Sidebar' actions from themes.php to customize-controls.php. * Create a postMessage connection between themes.php and customize-controls.php. * Allow the theme customizer to be accessed directly (independent of themes.php and the customize loader). * Add wp_customize_href() and wp_customize_url(). * Remove wp_customize_loader(). To include the loader, use wp_enqueue_script( 'customize-loader' ). * The theme customizer now requires postMessage browser support. * Add .hide-if-customize and .hide-if-no-customize CSS classes. * Clean up customize-preview.js. git-svn-id: https://develop.svn.wordpress.org/trunk@20476 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -152,7 +152,7 @@ if ( isset($_GET['action']) ) {
|
||||
|
||||
check_admin_referer('upgrade-theme_' . $theme);
|
||||
|
||||
wp_customize_loader();
|
||||
wp_enqueue_script( 'customize-loader' );
|
||||
|
||||
$title = __('Update Theme');
|
||||
$parent_file = 'themes.php';
|
||||
@@ -204,7 +204,7 @@ if ( isset($_GET['action']) ) {
|
||||
if ( is_wp_error($api) )
|
||||
wp_die($api);
|
||||
|
||||
wp_customize_loader();
|
||||
wp_enqueue_script( 'customize-loader' );
|
||||
|
||||
$title = __('Install Themes');
|
||||
$parent_file = 'themes.php';
|
||||
@@ -230,7 +230,7 @@ if ( isset($_GET['action']) ) {
|
||||
|
||||
$file_upload = new File_Upload_Upgrader('themezip', 'package');
|
||||
|
||||
wp_customize_loader();
|
||||
wp_enqueue_script( 'customize-loader' );
|
||||
|
||||
$title = __('Upload Theme');
|
||||
$parent_file = 'themes.php';
|
||||
|
||||
Reference in New Issue
Block a user