diff --git a/wp-admin/customize.php b/wp-admin/customize.php index 40857031a7..b27292d9eb 100644 --- a/wp-admin/customize.php +++ b/wp-admin/customize.php @@ -100,6 +100,12 @@ if ( ! empty( $autofocus ) ) { $wp_customize->set_autofocus( $autofocus ); } +// Let's roll. +header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) ); + +wp_user_settings(); +_wp_admin_html_begin(); + $registered = $wp_scripts->registered; $wp_scripts = new WP_Scripts(); $wp_scripts->registered = $registered; @@ -126,12 +132,6 @@ wp_enqueue_style( 'customize-controls' ); */ do_action( 'customize_controls_enqueue_scripts' ); -// Let's roll. -header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) ); - -wp_user_settings(); -_wp_admin_html_begin(); - $body_class = 'wp-core-ui wp-customizer js'; if ( wp_is_mobile() ) : diff --git a/wp-includes/version.php b/wp-includes/version.php index b60b68f349..19fa767e89 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-alpha-59479'; +$wp_version = '6.8-alpha-59480'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.