diff --git a/src/wp-admin/menu.php b/src/wp-admin/menu.php
index 94f479fb8c..e9bf0a9637 100644
--- a/src/wp-admin/menu.php
+++ b/src/wp-admin/menu.php
@@ -217,8 +217,10 @@ if ( wp_is_block_template_theme() ) {
 // Hide Customize link on block themes unless a plugin or theme is using
 // customize_register to add a setting.
 if ( ! wp_is_block_template_theme() || has_action( 'customize_register' ) ) {
-	$customize_url            = add_query_arg( 'return', urlencode( remove_query_arg( wp_removable_query_args(), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ), 'customize.php' );
-	$submenu['themes.php'][7] = array( __( 'Customize' ), 'customize', esc_url( $customize_url ), '', 'hide-if-no-customize' );
+	$customize_url = add_query_arg( 'return', urlencode( remove_query_arg( wp_removable_query_args(), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ), 'customize.php' );
+	$position      =  wp_is_block_template_theme() ? 7 : 6;
+
+	$submenu['themes.php'][ $position ] = array( __( 'Customize' ), 'customize', esc_url( $customize_url ), '', 'hide-if-no-customize' );
 }
 
 if ( current_theme_supports( 'menus' ) || current_theme_supports( 'widgets' ) ) {
