diff --git a/src/wp-includes/class-wp-customize-manager.php b/src/wp-includes/class-wp-customize-manager.php
index 8d78bdd..47d58e9 100644
--- a/src/wp-includes/class-wp-customize-manager.php
+++ b/src/wp-includes/class-wp-customize-manager.php
@@ -1442,8 +1442,8 @@ final class WP_Customize_Manager {
 
 		// Replicate behavior from options-reading.php and hide front page options if there are no pages
 		if ( get_pages() ) {
-			$this->add_section( 'static_front_page', array(
-				'title'          => __( 'Static Front Page' ),
+			$this->add_section( 'front_page', array(
+				'title'          => __( 'Front Page' ),
 			//	'theme_supports' => 'static-front-page',
 				'priority'       => 120,
 				'description'    => __( 'Your theme supports a static front page.' ),
@@ -1458,7 +1458,7 @@ final class WP_Customize_Manager {
 
 			$this->add_control( 'show_on_front', array(
 				'label'   => __( 'Front page displays' ),
-				'section' => 'static_front_page',
+				'section' => 'front_page',
 				'type'    => 'radio',
 				'choices' => array(
 					'posts' => __( 'Your latest posts' ),
@@ -1474,7 +1474,7 @@ final class WP_Customize_Manager {
 
 			$this->add_control( 'page_on_front', array(
 				'label'      => __( 'Front page' ),
-				'section'    => 'static_front_page',
+				'section'    => 'front_page',
 				'type'       => 'dropdown-pages',
 			) );
 
@@ -1486,7 +1486,7 @@ final class WP_Customize_Manager {
 
 			$this->add_control( 'page_for_posts', array(
 				'label'      => __( 'Posts page' ),
-				'section'    => 'static_front_page',
+				'section'    => 'front_page',
 				'type'       => 'dropdown-pages',
 			) );
 		}
