add_section( 'social_section', array( 'priority' => 80, 'title' => esc_attr__( 'Social Media', 'agency-x' ), 'description' => 'Customize your Social Info', 'capability' => 'edit_theme_options', ) ); foreach ( $social as $key => $value ) { $wp_customize->add_setting( $value . '_textbox', array( 'sanitize_callback' => 'esc_url_raw', 'default' => '' ) ); $wp_customize->add_control( $value . '_textbox', array( 'label' => ucwords( $value ), 'section' => 'social_section', 'settings' => $value . '_textbox', 'type' => 'url', 'default' =>'' ) ); } }