add_panel( 'alpert_sp_sortable', array( 'title' => esc_html__( 'Sections', 'alpert' ), 'priority' => 150, ) ); $sortable_sections = array ( 'slider' => esc_html__( 'Slider', 'alpert' ), 'wwd' => esc_html__( 'What We Do', 'alpert' ), 'hero_content' => esc_html__( 'Hero Content', 'alpert' ), 'featured_product' => esc_html__( 'Featured Product', 'alpert' ), 'portfolio' => esc_html__( 'Portfolio', 'alpert' ), 'testimonial' => esc_html__( 'Testimonials', 'alpert' ), 'featured_content' => esc_html__( 'Featured Content', 'alpert' ), ); foreach ( $sortable_sections as $key => $value ) { // Add sections. $wp_customize->add_section( 'alpert_ss_' . $key, array( 'title' => $value, 'panel' => 'alpert_sp_sortable' ) ); } } add_action( 'customize_register', 'alpert_sortable_sections', 1 );