sections() as $seckey => $section ) { // build out each section. $wp_customize->add_section( 'brisko_section_' . trim( $section ), array( 'title' => esc_html( ' ยป ' . trim( ucwords( $section ) ) ), 'capability' => 'edit_theme_options', 'panel' => 'brisko_theme_panel', ) ); } // foreach } }