diff --git a/wp-includes/class-wp-customize-section.php b/wp-includes/class-wp-customize-section.php index 78abf9e857..81f3ced750 100644 --- a/wp-includes/class-wp-customize-section.php +++ b/wp-includes/class-wp-customize-section.php @@ -374,204 +374,14 @@ class WP_Customize_Section { } } -/** - * Customize Themes Section class. - * - * A UI container for theme controls, which behaves like a backwards Panel. - * - * @since 4.2.0 - * - * @see WP_Customize_Section - */ -class WP_Customize_Themes_Section extends WP_Customize_Section { +/** WP_Customize_Themes_Section class */ +require_once( ABSPATH . WPINC . '/customize/class-wp-customize-themes-section.php' ); - /** - * Customize section type. - * - * @since 4.2.0 - * @access public - * @var string - */ - public $type = 'themes'; +/** WP_Customize_Sidebar_Section class */ +require_once( ABSPATH . WPINC . '/customize/class-wp-customize-sidebar-section.php' ); - /** - * Render the themes section, which behaves like a panel. - * - * @since 4.2.0 - * @access protected - */ - protected function render() { - $classes = 'accordion-section control-section control-section-' . $this->type; - ?> -