add_section( 'gh_social_account', array( 'title' => __('Social Account','blogim'), 'priority' => 102, 'description' => __('Enter the URL of your social account.Leave it empty to hide the icon','blogim'), ) ); $icons = array(); $icons[] = array( 'slug'=>'gh_social_fb', 'default' => 'http://facebook.com', 'label' => __( 'Facebook', 'blogim' ) ); $icons[] = array( 'slug'=>'gh_social_tw', 'default' => 'http://twitter.com', 'label' => __( 'Twitter', 'blogim' ) ); foreach($icons as $icon){ $wp_customize->add_setting( $icon['slug'], array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'gh_sanitize_text', ) ); $wp_customize->add_control( $icon['slug'], array( 'section' => 'gh_social_account', 'label' => $icon['label'], 'type' => 'text', ) ); }