Customize: Always enqueue `customize-preview` stylesheet in the customizer preview to style selective refresh and visual edit shortcuts.
Enqueues the style along with the `customize-preview` script in the manager instead of via the `widgets` and `nav_menus` components, ensuring that the stylesheet is loaded for users who cannot manage widgets or nav menus. Props dlh. See #27403. Fixes #39498. Built from https://develop.svn.wordpress.org/trunk@39951 git-svn-id: http://core.svn.wordpress.org/trunk@39888 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d10f451770
commit
a44f8db73d
|
@ -1577,6 +1577,7 @@ final class WP_Customize_Manager {
|
||||||
add_filter( 'wp_redirect', array( $this, 'add_state_query_params' ) );
|
add_filter( 'wp_redirect', array( $this, 'add_state_query_params' ) );
|
||||||
|
|
||||||
wp_enqueue_script( 'customize-preview' );
|
wp_enqueue_script( 'customize-preview' );
|
||||||
|
wp_enqueue_style( 'customize-preview' );
|
||||||
add_action( 'wp_head', array( $this, 'customize_preview_loading_style' ) );
|
add_action( 'wp_head', array( $this, 'customize_preview_loading_style' ) );
|
||||||
add_action( 'wp_head', array( $this, 'remove_frameless_preview_messenger_channel' ) );
|
add_action( 'wp_head', array( $this, 'remove_frameless_preview_messenger_channel' ) );
|
||||||
add_action( 'wp_footer', array( $this, 'customize_preview_settings' ), 20 );
|
add_action( 'wp_footer', array( $this, 'customize_preview_settings' ), 20 );
|
||||||
|
|
|
@ -1327,7 +1327,6 @@ final class WP_Customize_Nav_Menus {
|
||||||
*/
|
*/
|
||||||
public function customize_preview_enqueue_deps() {
|
public function customize_preview_enqueue_deps() {
|
||||||
wp_enqueue_script( 'customize-preview-nav-menus' ); // Note that we have overridden this.
|
wp_enqueue_script( 'customize-preview-nav-menus' ); // Note that we have overridden this.
|
||||||
wp_enqueue_style( 'customize-preview' );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1086,7 +1086,6 @@ final class WP_Customize_Widgets {
|
||||||
*/
|
*/
|
||||||
public function customize_preview_enqueue() {
|
public function customize_preview_enqueue() {
|
||||||
wp_enqueue_script( 'customize-preview-widgets' );
|
wp_enqueue_script( 'customize-preview-widgets' );
|
||||||
wp_enqueue_style( 'customize-preview' );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.8-alpha-39950';
|
$wp_version = '4.8-alpha-39951';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue